Drop a more.md profile into Cursor via MCP. The agent can read, search, pay-per-read any profile from the editor.
// .cursor/mcp.json
{
"mcpServers": {
"more-md": {
"command": "npx",
"args": ["-y", "@more-md/mcp@latest"],
"env": { "MORE_MD_USER": "<your-username>" }
}
}
}
Same MCP stdio server, wired into Anthropic's Claude Desktop config file.
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"more-md": {
"command": "npx",
"args": ["-y", "@more-md/mcp@latest"],
"env": { "MORE_MD_USER": "<your-username>" }
}
}
}
Codeium Windsurf speaks MCP too. Same stdio server, dropped into the Windsurf config.
// ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"more-md": {
"command": "npx",
"args": ["-y", "@more-md/mcp@latest"]
}
}
}
OpenAI Codex CLI loads MCP from a TOML block. Ships with rate-limited read access out of the box.
# ~/.codex/config.toml
[mcp_servers.more-md]
command = "npx"
args = ["-y", "@more-md/mcp@latest"]
Install the more-md MCP server through the VS Code MCP bridge (agentic chat panel).
// .vscode/mcp.json
{
"servers": {
"more-md": {
"command": "npx",
"args": ["-y", "@more-md/mcp@latest"]
}
}
}
Antigravity reads the same MCP schema. Copy the config in, restart the runtime, done.
// ~/.antigravity/mcp.json
{
"mcpServers": {
"more-md": {
"command": "npx",
"args": ["-y", "@more-md/mcp@latest"]
}
}
}
First-class Zed MCP integration lands in W2 once the upstream context-server API stabilizes.
Typed adapter ships in Wave 2. Use the framework's generic HTTP tool today.
Continue's MCP bridge ships in W2; until then you can wire more.md via its generic HTTP tool.
Typed adapter ships in Wave 2. Use the framework's generic HTTP tool today.