mcp-server-opencode 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,19 +42,7 @@ See [Installation](#installation) for manual config, and from-source options.
42
42
  | `delegate_task` | Guides the host through delegating one or more tasks to OpenCode agents (start/wait/result workflow), including a model selection guide that maps each OpenCode model tier to the task difficulty it should handle |
43
43
 
44
44
  ## How it works
45
-
46
- ```
47
- Claude Code
48
-
49
-
50
- MCP Server (this project)
51
-
52
-
53
- OpenCode SDK / CLI
54
-
55
-
56
- Subagents
57
- ```
45
+ ![opencode mcp architecture](./opencode-architecture.svg)
58
46
 
59
47
  Task delegation is **asynchronous**: starting a task returns immediately with a `task_id` instead of blocking until the subagent finishes. This lets Claude Code fire multiple `opencode_start_task` calls in parallel — each one opens an isolated OpenCode `Session` — without hitting MCP client timeouts on long-running work. Status and results are fetched separately via polling.
60
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-opencode",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "MCP server that lets any MCP host (Claude Code, Codex CLI, Cursor, etc.) drive OpenCode and delegate tasks asynchronously to its agents",
5
5
  "main": "./build/src/index.js",
6
6
  "types": "./build/src/index.d.ts",