From 8215ebca24e11f0ec87b6f4556ccbe86cb36850b Mon Sep 17 00:00:00 2001 From: Britannio Jarrett Date: Wed, 12 Nov 2025 15:01:44 +0000 Subject: [PATCH] Done! I've added per-agent installation instructions to your README with collapsible sections for all 14 agents (Amp, Claude Code, Claude Desktop, Codex, Cursor, Factory, Gemini CLI, Goose, Kiro, LM Studio, opencode, Qodo Gen, VS Code, Warp, and Windsurf). Each section includes the appropriate setup commands adapted for your dev-manager-mcp server. --- README.md | 205 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 205 insertions(+) diff --git a/README.md b/README.md index 5263b5f..bd1c572 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,211 @@ Add this MCP config to your coding CLI: Finally, ask your coding CLI to start a dev server. You should see it use the MCP server. +### Agent-Specific Installation + +**Standard config** works in most tools: + +```json +{ + "mcpServers": { + "dev-manager": { + "command": "npx", + "args": ["dev-manager-mcp", "stdio"] + } + } +} +``` + +
+Amp + +Add via the Amp VS Code extension settings screen or by updating your settings.json file: + +```json +"amp.mcpServers": { + "dev-manager": { + "command": "npx", + "args": ["dev-manager-mcp", "stdio"] + } +} +``` + +**Amp CLI Setup:** + +Add via the `amp mcp add` command below + +```bash +amp mcp add dev-manager -- npx dev-manager-mcp stdio +``` + +
+ +
+Claude Code + +Use the Claude Code CLI to add the dev-manager MCP server: + +```bash +claude mcp add dev-manager npx dev-manager-mcp stdio +``` +
+ +
+Claude Desktop + +Follow the MCP install [guide](https://modelcontextprotocol.io/quickstart/user), use the standard config above. + +
+ +
+Codex + +Use the Codex CLI to add the dev-manager MCP server: + +```bash +codex mcp add dev-manager npx "dev-manager-mcp" "stdio" +``` + +Alternatively, create or edit the configuration file `~/.codex/config.toml` and add: + +```toml +[mcp_servers.dev-manager] +command = "npx" +args = ["dev-manager-mcp", "stdio"] +``` + +For more information, see the [Codex MCP documentation](https://github.com/openai/codex/blob/main/codex-rs/config.md#mcp_servers). + +
+ +
+Cursor + +Go to `Cursor Settings` -> `MCP` -> `Add new MCP Server`. Name to your liking, use `command` type with the command `npx dev-manager-mcp stdio`. You can also verify config or add command arguments via clicking `Edit`. + +
+ +
+Factory + +Use the Factory CLI to add the dev-manager MCP server: + +```bash +droid mcp add dev-manager "npx dev-manager-mcp stdio" +``` + +Alternatively, type `/mcp` within Factory droid to open an interactive UI for managing MCP servers. + +For more information, see the [Factory MCP documentation](https://docs.factory.ai/cli/configuration/mcp). + +
+ +
+Gemini CLI + +Follow the MCP install [guide](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md#configure-the-mcp-server-in-settingsjson), use the standard config above. + +
+ +
+Goose + +Go to `Advanced settings` -> `Extensions` -> `Add custom extension`. Name to your liking, use type `STDIO`, and set the `command` to `npx dev-manager-mcp stdio`. Click "Add Extension". +
+ +
+Kiro + +Follow the MCP Servers [documentation](https://kiro.dev/docs/mcp/). For example in `.kiro/settings/mcp.json`: + +```json +{ + "mcpServers": { + "dev-manager": { + "command": "npx", + "args": ["dev-manager-mcp", "stdio"] + } + } +} +``` +
+ +
+LM Studio + +Go to `Program` in the right sidebar -> `Install` -> `Edit mcp.json`. Use the standard config above. +
+ +
+opencode + +Follow the MCP Servers [documentation](https://opencode.ai/docs/mcp-servers/). For example in `~/.config/opencode/opencode.json`: + +```json +{ + "$schema": "https://opencode.ai/config.json", + "mcp": { + "dev-manager": { + "type": "local", + "command": [ + "npx", + "dev-manager-mcp", + "stdio" + ], + "enabled": true + } + } +} +``` +
+ +
+Qodo Gen + +Open [Qodo Gen](https://docs.qodo.ai/qodo-documentation/qodo-gen) chat panel in VSCode or IntelliJ → Connect more tools → + Add new MCP → Paste the standard config above. + +Click Save. +
+ +
+VS Code + +Follow the MCP install [guide](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server), use the standard config above. You can also install the dev-manager MCP server using the VS Code CLI: + +```bash +# For VS Code +code --add-mcp '{"name":"dev-manager","command":"npx","args":["dev-manager-mcp","stdio"]}' +``` + +After installation, the dev-manager MCP server will be available for use with your GitHub Copilot agent in VS Code. +
+ +
+Warp + +Go to `Settings` -> `AI` -> `Manage MCP Servers` -> `+ Add` to [add an MCP Server](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server). Use the standard config above. + +Alternatively, use the slash command `/add-mcp` in the Warp prompt and paste the standard config from above: +```json +{ + "mcpServers": { + "dev-manager": { + "command": "npx", + "args": ["dev-manager-mcp", "stdio"] + } + } +} +``` + +
+ +
+Windsurf + +Follow Windsurf MCP [documentation](https://docs.windsurf.com/windsurf/cascade/mcp). Use the standard config above. + +
+ ## MCP Tools ### `start`