pokt.ai is a platform for creating, connecting, and managing endpoints, reviewing usage, checking billing, inviting people, and generating MCP tokens to use the account with an AI tool. One token powers two MCP servers: the core pokt.ai server and the helper server at mcp.pokt.ai. The same bundle also includes your organization id so the helper MCP can read your account context. This guide explains what to click, what to look at, and what to do on each screen without assuming prior experience.
The platform brings together everything you need to run your account: authentication, organizations, endpoints, usage, billing, members, wallet, and MCP access.
The main navigation lives in the sidebar. From there you open each view and the page content changes based on what you want to do. The MCP token you generate is tied to your user and organization, and the generated bundle is ready for both MCP servers at once.
If you are asked for an email verification code, enter it on the verification screen. Do not close the tab until you finish.
1. Open /mcp and click Generate token.
2. The app creates a random name and generates a new token.
3. Click Copy MCP and paste the block into your AI tool.
4. The block includes both MCP server URLs, the token, and the user and organization headers.
5. From there, the AI can read organizations, endpoints, usage, networks, and the extra RPC helpers according to the token permissions.
curl -X POST "https://pokt.ai/api/gateway?endpoint=YOUR_ENDPOINT_ID" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_blockNumber",
"params": [],
"id": 1
}'{
"mcpServers": {
"poktai-tools": {
"type": "http",
"url": "https://mcp.pokt.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_MCP_TOKEN",
"X-Pokt-User-Id": "user_123",
"X-Pokt-User-Email": "you@pokt.ai",
"X-Pokt-User-Name": "Your Name",
"X-Pokt-Org-Id": "org_123",
"X-Pokt-Org-Name": "Main Workspace"
}
}
}
}