TerminalFeed and TensorFeed are sister MCP servers with a shared credit pool. If you buy credits with USDC on Base on either site, the bearer token authenticates against both. TerminalFeed handles real-time world data (earthquakes, prediction markets, space, infrastructure status, developer activity); TensorFeed handles the AI ecosystem (model pricing, status, latency probes, AI news, smart routing, cost projection). Most agents that want real-time context end up wanting both.
Quick comparison of what each server adds to your agent:
TerminalFeed (this site)
Real-time world data: prediction markets, earthquakes, weather, climate alerts, status pages, GitHub trending, HuggingFace, Solana network, world events. 27 tools.
TensorFeed (sister)
AI ecosystem data: model pricing, AI service status, latency probes, MCP registry growth, AI news (36+ sources), smart routing, cost projection, webhook watches. 22 tools.
TensorFeed's MCP server is an npm package (different distribution model from this server's hosted-URL setup). Same Claude Desktop config file, just a different entry:
{
"mcpServers": {
"tensorfeed": {
"command": "npx",
"args": ["-y", "@tensorfeed/mcp-server"]
}
}
}
Premium TensorFeed tools use the TENSORFEED_TOKEN environment variable instead of an Authorization header. Same bearer token you bought on TerminalFeed works:
{
"mcpServers": {
"tensorfeed": {
"command": "npx",
"args": ["-y", "@tensorfeed/mcp-server"],
"env": {
"TENSORFEED_TOKEN": "tf_live_<your_token>"
}
}
}
}
Combined setup (both servers in one config). If you want everything, drop both entries into the same config file:
{
"mcpServers": {
"terminalfeed": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://terminalfeed.io/api/mcp",
"--header", "Authorization: Bearer tf_live_<your_token>"
]
},
"tensorfeed": {
"command": "npx",
"args": ["-y", "@tensorfeed/mcp-server"],
"env": { "TENSORFEED_TOKEN": "tf_live_<your_token>" }
}
}
}
Source repo for TensorFeed MCP: github.com/RipperMercs/tensorfeed-mcp. Docs: tensorfeed.ai/developers. Both servers are AFTA-certified: code-enforced no-charge guarantees on errors and stale data, Ed25519-signed receipts on every paid call.