diff --git a/src/brave-search/README.md b/src/brave-search/README.md index 2d5caef9..2d5ae0df 100644 --- a/src/brave-search/README.md +++ b/src/brave-search/README.md @@ -38,11 +38,16 @@ Add this to your `claude_desktop_config.json`: ```json { - "brave-search": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-brave-search"], - "env": { - "BRAVE_API_KEY": "YOUR_API_KEY_HERE" + "mcpServers": { + "brave-search": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-brave-search" + ], + "env": { + "BRAVE_API_KEY": "YOUR_API_KEY_HERE" + } } } } diff --git a/src/everything/README.md b/src/everything/README.md index 69281a06..b00a6635 100644 --- a/src/everything/README.md +++ b/src/everything/README.md @@ -78,8 +78,14 @@ Add to your `claude_desktop_config.json`: ```json { - "everything": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-everything"] + "mcpServers": { + "everything": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-everything" + ] + } } } +``` diff --git a/src/filesystem/README.md b/src/filesystem/README.md index 08ec4617..c2950cd5 100644 --- a/src/filesystem/README.md +++ b/src/filesystem/README.md @@ -82,9 +82,16 @@ Node.js server implementing Model Context Protocol (MCP) for filesystem operatio Add this to your `claude_desktop_config.json`: ```json { - "filesystem": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/username/Desktop", "/path/to/other/allowed/dir"] + "mcpServers": { + "filesystem": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-filesystem", + "/Users/username/Desktop", + "/path/to/other/allowed/dir" + ] + } } } ``` diff --git a/src/gdrive/README.md b/src/gdrive/README.md index 16dadf2b..9a795f0c 100644 --- a/src/gdrive/README.md +++ b/src/gdrive/README.md @@ -51,9 +51,14 @@ To integrate this server with the desktop app, add the following to your app's s ```json { - "gdrive": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-gdrive"] + "mcpServers": { + "gdrive": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-gdrive" + ] + } } } ``` diff --git a/src/github/README.md b/src/github/README.md index d966721c..cfd268a8 100644 --- a/src/github/README.md +++ b/src/github/README.md @@ -117,11 +117,16 @@ To use this with Claude Desktop, add the following to your `claude_desktop_confi ```json { - "github": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-github"], - "env": { - "GITHUB_PERSONAL_ACCESS_TOKEN": "" + "mcpServers": { + "github": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-github" + ], + "env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "" + } } } } diff --git a/src/google-maps/README.md b/src/google-maps/README.md index a7b53e43..962f031a 100644 --- a/src/google-maps/README.md +++ b/src/google-maps/README.md @@ -61,11 +61,16 @@ Add the following to your `claude_desktop_config.json`: ```json { - "google-maps": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-google-maps"], - "env": { - "GOOGLE_MAPS_API_KEY": "" + "mcpServers": { + "google-maps": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-google-maps" + ], + "env": { + "GOOGLE_MAPS_API_KEY": "" + } } } } diff --git a/src/memory/README.md b/src/memory/README.md index 572ac917..66bdbb41 100644 --- a/src/memory/README.md +++ b/src/memory/README.md @@ -130,9 +130,14 @@ Example: Add this to your claude_desktop_config.json: ```json { - "memory": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-memory"] + "mcpServers": { + "memory": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-memory" + ] + } } } ``` diff --git a/src/postgres/README.md b/src/postgres/README.md index 5fe8d4de..9a16af77 100644 --- a/src/postgres/README.md +++ b/src/postgres/README.md @@ -26,9 +26,15 @@ To use this server with the Claude Desktop app, add the following configuration ```json { - "postgres": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"] + "mcpServers": { + "postgres": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-postgres", + "postgresql://localhost/mydb" + ] + } } } ``` diff --git a/src/slack/README.md b/src/slack/README.md index 0f964e37..ca5d4965 100644 --- a/src/slack/README.md +++ b/src/slack/README.md @@ -98,12 +98,17 @@ Add the following to your `claude_desktop_config.json`: ```json { - "slack": { - "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-slack"], - "env": { - "SLACK_BOT_TOKEN": "xoxb-your-bot-token", - "SLACK_TEAM_ID": "T01234567" + "mcpServers": { + "slack": { + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-slack" + ], + "env": { + "SLACK_BOT_TOKEN": "xoxb-your-bot-token", + "SLACK_TEAM_ID": "T01234567" + } } } }