The DeFi Report
- Industry-leading crypto research trusted by finance pros. Sponsored
Friend & Sponsor
Learn more
BTC $80,735.00 -1.39% $80,735.00 ETH $2,282.84 -2.32% $2,282.84 BNB $661.48 -0.06% $661.48 SOL $94.69 -3.06% $94.69 XRP $1.44 -2.42% $1.44 DOGE $0.11 -1.61% $0.11 TRX $0.35 -0.28% $0.35 ADA $0.27 -2.98% $0.27 TON $2.34 -0.30% $2.34 SHIB $0.00 0.99% $0.00 AVAX $28.30 -0.69% $28.30 BCH $440.15 -2.23% $440.15 LINK $10.28 -3.38% $10.28 LEO $10.18 -0.36% $10.18 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 $80,735.00 -1.39% $80,735.00 ETH $2,282.84 -2.32% $2,282.84 BNB $661.48 -0.06% $661.48 SOL $94.69 -3.06% $94.69 XRP $1.44 -2.42% $1.44 DOGE $0.11 -1.61% $0.11 TRX $0.35 -0.28% $0.35 ADA $0.27 -2.98% $0.27 TON $2.34 -0.30% $2.34 SHIB $0.00 0.99% $0.00 AVAX $28.30 -0.69% $28.30 BCH $440.15 -2.23% $440.15 LINK $10.28 -3.38% $10.28 LEO $10.18 -0.36% $10.18 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/de/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/de/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/de/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/de/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/de/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."