Commit 938c1049 authored by Jan Reimes's avatar Jan Reimes
Browse files

feat(vscode): add mcp configuration for server commands

- Introduced a new mcp.json file for managing server commands
- Supports various commands like ncp, mcpadvisor, and memorygraph
- Enhances development environment setup for easier server management
parent 974bdd4e
Loading
Loading
Loading
Loading

.vscode/mcp.json

0 → 100644
+73 −0
Original line number Diff line number Diff line
{
    "servers": {
        "ncp": {
            "command": "npx",
            "args": [
                "-y",
                "@portel/ncp@latest"
            ]
        },
        "mcpadvisor": {
            "command": "npx",
            "args": [
                "-y",
                "@xiaohui-wang/mcpadvisor@latest"
            ]
        },
        "fetch": {
            "args": [
                "mcp-server-fetch"
            ],
            "command": "uvx"
        },
        "gh_grep": {
            "type": "http",
            "url": "https://mcp.grep.app"
        },
        "mcp-compass": {
            "command": "npx",
            "args": [
                "-y",
                "@liuyoshio/mcp-compass@latest"
            ]
        },
        "upstash-context7": {
            "command": "npx",
            "args": [
                "-y",
                "@upstash/context7-mcp"
            ]
        },
        "memorygraph": {
            "command": "memorygraph",
            "type": "stdio",
            "args": [
                "--profile",
                "extended"
            ],
            "env": {
                "PYTHONIOENCODING": "utf-8"
            }
        },
        "sequential-thinking": {
            "command": "npx",
            "args": [
                "-y",
                "@modelcontextprotocol/server-sequential-thinking@latest"
            ]
        },
        "desktop-commander": {
            "command": "npx",
            "args": [
                "-y",
                "@wonderwhy-er/desktop-commander@latest",
                "--no-onboarding"
            ]
        },
        "beads": {
            "command": "beads-mcp",
            "args": [],
            "type": "stdio"
        }
    }
}
 No newline at end of file