Skip to content
VS Code

knowmint for VS Code

io.github.sou0327/knowmint

AI agent knowledge marketplace. Discover, purchase, and retrieve human expertise via x402 on Solana.

client:VS Code transport:stdio runtime:npm

Install knowmint in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "km-api-key",
      "description": "KM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "km-base-url",
      "description": "KM_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "knowmint": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@knowmint/mcp-server"
      ],
      "env": {
        "KM_API_KEY": "${input:km-api-key}",
        "KM_BASE_URL": "${input:km-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

knowmint in other clients