BTC $64,086.00 0.64% $64,086.00 ETH $1,677.25 0.50% $1,677.25 BNB $607.28 0.20% $607.28 SOL $68.08 1.25% $68.08 XRP $1.14 1.09% $1.14 DOGE $0.09 -0.05% $0.09 TRX $0.32 0.82% $0.32 ADA $0.17 0.56% $0.17 TON $2.22 -5.27% $2.22 SHIB $0.00 0.99% $0.00 AVAX $28.30 -0.69% $28.30 BCH $303.74 -11.53% $303.74 LINK $7.81 -3.33% $7.81 LEO $9.65 1.16% $9.65 SUI $2.65 -21.81% $2.65 DOT $7.76 1.42% $7.76 LTC $102.89 -11.81% $102.89 NEAR $3.75 1.55% $3.75 APT $8.30 -0.02% $8.30 UNI $7.05 1.65% $7.05 PEPE $0.00 2.04% $0.00 ICP $7.16 -1.35% $7.16 DAI $1.00 -0.16% $1.00 TAO $431.30 -0.26% $431.30 FET $1.18 2.73% $1.18 BTC $64,086.00 0.64% $64,086.00 ETH $1,677.25 0.50% $1,677.25 BNB $607.28 0.20% $607.28 SOL $68.08 1.25% $68.08 XRP $1.14 1.09% $1.14 DOGE $0.09 -0.05% $0.09 TRX $0.32 0.82% $0.32 ADA $0.17 0.56% $0.17 TON $2.22 -5.27% $2.22 SHIB $0.00 0.99% $0.00 AVAX $28.30 -0.69% $28.30 BCH $303.74 -11.53% $303.74 LINK $7.81 -3.33% $7.81 LEO $9.65 1.16% $9.65 SUI $2.65 -21.81% $2.65 DOT $7.76 1.42% $7.76 LTC $102.89 -11.81% $102.89 NEAR $3.75 1.55% $3.75 APT $8.30 -0.02% $8.30 UNI $7.05 1.65% $7.05 PEPE $0.00 2.04% $0.00 ICP $7.16 -1.35% $7.16 DAI $1.00 -0.16% $1.00 TAO $431.30 -0.26% $431.30 FET $1.18 2.73% $1.18
Years of Bankless.
Articles & newsletters
Every Bankless post, by keyword or slug. Body included for premium tokens.
Podcast transcripts
Full transcripts, speaker-mapped. Or grep them for a phrase and get the matching snippet back.
Airdrop Hunter
Active opportunities, their quests, on-chain criteria, networks.
Profiles
People, projects and tokens that Bankless tracks.
Your editor. Or your terminal.
Right in Cursor.
Project context Cursor doesn't have, surfaced where you're writing code.
// Staker.sol
contract Staker {
address public operator;
mapping(address => uint256) public shares;
function delegate(uint256 amount) external {
// ...
}
}
Or just cURL.
Plain HTTP POST, JSON-RPC 2.0 body, Bearer token. The shape every MCP client uses.
Three steps. About a minute.
Drop it into your client.
Claude Desktop's claude_desktop_config.json validator only accepts stdio servers, so we wrap the HTTP endpoint with mcp-remote (needs Node 18+). Add to ~/Library/Application Support/Claude/claude_desktop_config.json alongside any existing top-level keys, then restart Claude Desktop.
{
"mcpServers": {
"bankless": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.bankless.com/es/mcp",
"--header",
"Authorization: Bearer YOUR_TOKEN"
]
}
}
}
First launch downloads mcp-remote; subsequent launches are instant.
Newer Claude Desktop beta that also accepts url?
Some recent builds will load this simpler stanza instead. If Claude Desktop shows "not a valid MCP server configuration" after a restart, your build doesn't accept it — fall back to the mcp-remote version above.
{
"mcpServers": {
"bankless": {
"url": "https://www.bankless.com/es/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
What about Settings › Connectors › Add custom connector?
That dialog accepts OAuth (Client ID + Secret) only, so it does not work for Bankless static Bearer tokens today. Use the config file above instead.
Cursor Settings › MCP › Edit Config. The same JSON also works for Continue, Windsurf, and other HTTP-aware MCP clients.
{
"mcpServers": {
"bankless": {
"url": "https://www.bankless.com/es/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
OpenAI Codex CLI uses ~/.codex/config.toml. Wraps the HTTP server with mcp-remote via stdio (needs Node 18+):
[mcp_servers.bankless]
command = "npx"
args = ["-y", "mcp-remote", "https://www.bankless.com/es/mcp", "--header", "Authorization: Bearer YOUR_TOKEN"]
ChatGPT Connectors / Custom GPTs?
ChatGPT's Connectors feature (Plus, Pro, Enterprise) requires OAuth, the same limitation as Claude Desktop's custom-connector dialog. It does not yet work for Bankless static Bearer tokens. Use the Codex CLI snippet above for terminal-based work.
Smoke-test the endpoint directly, no client needed.
curl -X POST https://www.bankless.com/es/mcp \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Ask anything.
Your client discovers the tools automatically. Try "Find recent Bankless podcasts about modular blockchains" or "Summarise the latest piece on restaking."