Quickstart
No wallet to connect and nothing to fund up front - Hinkal creates a custodial wallet for you server-side on first use. Your machine keeps only an access key.
1
Connect the server to your MCP client
Recommended - global install (faster startup, explicit updates):
npm i -g @hinkal/mcpclaude mcp add hinkal -- hinkal-mcpOpen the configuration file: top-left menu → Developer → Open app config.
Add Hinkal:
{
"mcpServers": {
"hinkal": { "command": "hinkal-mcp" }
}
}Restart Claude Desktop.
No global install? Use this configuration instead:
{
"mcpServers": {
"hinkal": {
"command": "npx",
"args": ["-y", "@hinkal/mcp@latest"]
}
}
}codex mcp add hinkal -- hinkal-mcpAdd to ~/.cursor/mcp.json (or ~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"hinkal": { "command": "hinkal-mcp" }
}
}No environment variables required over stdio - everything has a default (see Configuration).
2
Last updated