-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mcp-server-opencode",
"version": "1.2.0",
"description": "MCP server that lets any MCP host (Claude Code, Codex CLI, Cursor, etc.) drive OpenCode and delegate tasks asynchronously to its agents",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"opencode",
"agent",
"subagent",
"delegation",
"async",
"orchestration",
"claude-code",
"codex",
"ai-agents"
],
"author": "alejandro-technology",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alejandro-technology/opencode-mcp.git"
},
"bugs": {
"url": "https://github.com/alejandro-technology/opencode-mcp/issues"
},
"homepage": "https://opencode-mcp.alejandrotechnology.com",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"opencode-mcp": "./build/src/index.js"
},
"scripts": {
"dev": "npx -y @modelcontextprotocol/inspector pnpx tsx src/index.ts",
"lint": "biome check .",
"lint:write": "biome check --write .",
"lint:format": "biome format --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"build": "rm -rf build && npx tsc && chmod +x build/src/index.js",
"prepare": "npm run build",
"publish": "npm publish --access public"
},
"files": [
"build",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@opencode-ai/sdk": "^1.17.20",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}