Skip to content
VS Code

nanmesh mcp for VS Code

io.github.sacravenger/nanmesh-mcp

12 tools that let AI agents check trust scores and reviews before recommending any software tool.

client:VS Code transport:stdio runtime:npm

Install nanmesh mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nanmesh-api-url",
      "description": "NANMESH_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nanmesh-agent-key",
      "description": "NANMESH_AGENT_KEY",
      "password": true
    }
  ],
  "servers": {
    "nanmesh-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "nanmesh-mcp"
      ],
      "env": {
        "NANMESH_API_URL": "${input:nanmesh-api-url}",
        "NANMESH_AGENT_KEY": "${input:nanmesh-agent-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

nanmesh mcp in other clients