Commit ef8fdeb6 authored by Jan Reimes's avatar Jan Reimes
Browse files

refactor(vscode): simplify server configurations in mcp.json

* Removed unused server configurations.
* Streamlined the setup for skillz and grepai servers.
parent 336fb5ca
Loading
Loading
Loading
Loading
+8 −62
Original line number Diff line number Diff line
{
    "servers": {
        "ncp": {
            "command": "npx",
        "skillz": {
            "command": "uvx",
            "args": [
                "-y",
                "@portel/ncp@latest"
            ]
        },
        "mcpadvisor": {
            "command": "npx",
            "args": [
                "-y",
                "@xiaohui-wang/mcpadvisor@latest"
            ]
        },
        "fetch": {
            "args": [
                "mcp-server-fetch"
                "skillz@latest",
                ".config/skills"
            ],
            "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",
        "grepai": {
            "type": "stdio",
            "command": "grepai",
            "args": [
                "--profile",
                "extended"
            ],
            "env": {
                "PYTHONIOENCODING": "utf-8"
            }
        },
        "sequential-thinking": {
            "command": "npx",
            "args": [
                "-y",
                "@modelcontextprotocol/server-sequential-thinking@latest"
                "mcp-serve"
            ]
        },
        "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