Skip to content

Commit bb57a76

Browse files
George-iamclaude
andcommitted
docs(README): add 'Works With Any MCP Client' section
Surfaces multi-client support (Cursor/Windsurf/Cline/Claude Desktop/any MCP client) in the main README. Previously only documented in docs/MULTI_CLIENT.md. Adds compatibility matrix, the universal MCP server entry snippet, and per-client config-file paths. Notes that hooks are Claude Code-specific while MCP tools work everywhere. Builds on the existing docs/MULTI_CLIENT.md — README links there for full per-client setup, hook workarounds, and concurrent-client semantics. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 20e3929 commit bb57a76

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,44 @@ AXME Code complements CLAUDE.md — it reads your existing CLAUDE.md during setu
185185

186186
---
187187

188+
## Works With Any MCP Client
189+
190+
AXME Code is a [stdio MCP server](https://modelcontextprotocol.io/) — every MCP-compatible AI coding assistant gets the full set of `axme_*` tools (knowledge base read/write, safety queries, status, worklog).
191+
192+
| Client | MCP Tools | Safety Hooks | Auto Auditor |
193+
|---|---|---|---|
194+
| **Claude Code** (CLI / VS Code) | ✅ Full | ✅ Full | ✅ Yes |
195+
| **Cursor** | ✅ Full |||
196+
| **Windsurf** | ✅ Full |||
197+
| **Cline** (VS Code) | ✅ Full |||
198+
| **Claude Desktop** | ✅ Full |||
199+
| **Any other MCP client** | ✅ Full |||
200+
201+
The MCP server entry is identical in every client:
202+
203+
```json
204+
{
205+
"mcpServers": {
206+
"axme": {
207+
"command": "axme-code",
208+
"args": ["serve"]
209+
}
210+
}
211+
}
212+
```
213+
214+
Just place it in your client's MCP config file:
215+
- **Cursor:** `~/.cursor/mcp.json` or `.cursor/mcp.json` (per-project)
216+
- **Windsurf:** `~/.codeium/windsurf/mcp_config.json`
217+
- **Cline:** VS Code Settings → Cline MCP → `cline_mcp_settings.json`
218+
- **Claude Desktop:** `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or equivalent
219+
220+
Pre-execution safety hooks, the post-tool-use file tracker, and the background session auditor are Claude Code-specific (they require Claude Code's hook system). In other clients, the agent must call AXME tools explicitly — same knowledge base, same `.axme-code/` storage, just no automatic enforcement layer.
221+
222+
See [docs/MULTI_CLIENT.md](docs/MULTI_CLIENT.md) for full per-client setup, hook workarounds, and concurrent-client semantics.
223+
224+
---
225+
188226
## Comparison
189227

190228
| | AXME Code | MemPalace | Mastra | Zep | Mem0 | Supermemory |

0 commit comments

Comments
 (0)