Server details
Endpoint
https://pro-api.nikiwa.com/mcpTransport
Streamable HTTP
Server name
nikiwa-toolsAuth
OAuth or Bearer API key
What the server exposes
Nikiwa exposes blockchain data as deterministic tools. As the server describes itself to clients:Nikiwa exposes blockchain wallet, token, transaction, and prediction-market data as deterministic tools. It does NOT route, interpret, or synthesize. Each tool returns structured data and YOU compose and reason over the results.Alongside tools, the server provides:
- Resources, including
nikiwa://chains(the valid network list) andnikiwa://usage(composition recipes), which clients can read to ground their calls. - Prompts, ready-made composition recipes for common multi-tool questions.
The MCP server exposes the full tool set. The public Tools API exposes only a curated subset.
Two ways to authenticate
OAuth (recommended)
Best for interactive clients such as Claude and ChatGPT. Sign in and approve a consent screen. There is no key to copy or store.
API key
Best for scripts and self-hosted agents. Pass a developer key as a Bearer token.
Using tools well
- Provide exact entities: a wallet, token, or contract address, a transaction hash, and a network. Tools are deterministic and do not guess.
- Resolve first: if you only have a symbol, call
resolve_token_symbol; for an ENS name, callresolve_ens. - Read
nikiwa://chainsfor the valid network list rather than hard-coding it. - Each tool returns its data object,
{status: no_data}, or{status: error}.