Skip to content
VS Code

ForgeMesh Library MCP for VS Code

io.github.forgemeshlabs/library-mcp

A paid public-domain knowledge base for AI agents: full-text search, book metadata, chapters.

client:VS Code transport:stdio runtime:npm

Install ForgeMesh Library MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wallet-private-key",
      "description": "WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "library-base-url",
      "description": "LIBRARY_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "library-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@forgemeshlabs/library-mcp"
      ],
      "env": {
        "WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
        "LIBRARY_BASE_URL": "${input:library-base-url}"
      }
    }
  }
}

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

ForgeMesh Library MCP in other clients