@arcbridge/mcp-server 0.2.0 → 0.3.0

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @arcbridge/mcp-server
2
2
 
3
- MCP server for ArcBridge — exposes 32 architecture tools to AI coding agents via the [Model Context Protocol](https://modelcontextprotocol.io).
3
+ MCP server for ArcBridge — exposes 34 architecture tools to AI coding agents via the [Model Context Protocol](https://modelcontextprotocol.io).
4
4
 
5
5
  ## Install
6
6
 
@@ -10,7 +10,7 @@ npm install -g @arcbridge/mcp-server
10
10
 
11
11
  ## Setup
12
12
 
13
- Add to your project's `.mcp.json`:
13
+ **Claude Code** — add to your project's `.mcp.json`:
14
14
 
15
15
  ```json
16
16
  {
@@ -23,7 +23,15 @@ Add to your project's `.mcp.json`:
23
23
  }
24
24
  ```
25
25
 
26
- Restart your AI agent (Claude Code, etc.) and approve the MCP server when prompted.
26
+ **Codex CLI** add to `~/.codex/config.toml`:
27
+
28
+ ```toml
29
+ [mcp_servers.arcbridge]
30
+ command = "npx"
31
+ args = ["-y", "@arcbridge/mcp-server"]
32
+ ```
33
+
34
+ Restart your AI agent and approve the MCP server when prompted.
27
35
 
28
36
  ## Tools
29
37
 
@@ -51,8 +59,9 @@ Restart your AI agent (Claude Code, etc.) and approve the MCP server when prompt
51
59
  | `arcbridge_get_current_tasks` | Tasks for the active phase |
52
60
  | `arcbridge_update_task` | Mark tasks in-progress, done, blocked, or cancelled |
53
61
  | `arcbridge_create_task` | Add a task to any phase |
54
- | `arcbridge_delete_task` | Remove a task permanently (for example/template tasks) |
62
+ | `arcbridge_delete_task` | Remove one or more tasks permanently (batch via task_ids array) |
55
63
  | `arcbridge_create_phase` | Add a new phase to the project plan |
64
+ | `arcbridge_delete_phase` | Remove a phase and all its tasks permanently |
56
65
 
57
66
  ### Code Intelligence
58
67
 
@@ -80,6 +89,7 @@ Restart your AI agent (Claude Code, etc.) and approve the MCP server when prompt
80
89
  | `arcbridge_get_open_questions` | Unresolved architectural questions and risks |
81
90
  | `arcbridge_propose_arc42_update` | Generate arc42 update proposals from code changes |
82
91
  | `arcbridge_get_practice_review` | 5-dimension review: architecture, security, testing, docs, complexity |
92
+ | `arcbridge_update_arc42_section` | Read or update any arc42 markdown section (frontmatter preserved) |
83
93
 
84
94
  ### Roles & Sync
85
95