Skip to main content
Product integration: Get started.

Fastest setup

npx -y -p @neus/sdk neus init
That command configures NEUS MCP in supported clients automatically. Add --project when you want shared repo config. Add personal auth later with:
npx -y -p @neus/sdk neus auth --access-key <npk_...>

Config

Keep /mcp in the URL.
{
  "mcpServers": {
    "neus": {
      "type": "streamableHttp",
      "url": "https://mcp.neus.network/mcp"
    }
  }
}

Optional Bearer

Authorization: Bearer with npk_* matches REST. Enables neus_me, private reads, credits, and signatureless neus_verify when the profile wallet matches (Auth).
{
  "mcpServers": {
    "neus": {
      "type": "streamableHttp",
      "url": "https://mcp.neus.network/mcp",
      "headers": { "Authorization": "Bearer <key>" }
    }
  }
}
Check
KeysAccess keys
Confirmneus_mestatus: ok
NeverShip keys to the browser

First run

#Step
1Connect (config above)
2neus_context
3If Bearer → neus_me; else skip
4Verify, check, agents — Tools
5neus_proofs_get when you need proofs or qHash
Other clients: same URL, same optional Authorization header.

MCP overview

Endpoints