Skip the install — point at the hosted endpoint
No Node, no npx, no keys. The hosted endpoint exposes 34 tools: chain reads, oracle/AMM quotes (Mento FX, Uniswap v4, GoodDollar reserve), GoodDollar entitlement, and Self verify/lookup.
Endpoint
https://mcp.usecelina.xyz/api/mcpAlias: https://mcp.usecelina.xyz/mcp rewrites to /api/mcp
Streamable HTTP clients
For clients that support remote MCP URLs directly (Cursor, Claude, etc.):
{
"mcpServers": {
"celina-mcp": {
"url": "https://mcp.usecelina.xyz/api/mcp"
}
}
}Stdio-only clients (mcp-remote bridge)
If your client only supports stdio, use mcp-remote to bridge to the hosted endpoint:
{
"mcpServers": {
"celina-mcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.usecelina.xyz/api/mcp"]
}
}
}