>_TerminalFeed Devs

>_ Setup: Claude Desktop and Claude Code

One-line config, no install

Add to your claude_desktop_config.json or Claude Code MCP config. After restart, Claude can call all 27 tools.

{
  "mcpServers": {
    "terminalfeed": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://terminalfeed.io/api/mcp"
      ]
    }
  }
}

>_ Setup: Premium tier

Bearer auth unlocks the 12 paid tools

Buy credits with USDC on Base, get a bearer token, pass it as a header. Same config plus an Authorization line. The full payment walkthrough is in the how-ai-agents-pay article.

{
  "mcpServers": {
    "terminalfeed": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://terminalfeed.io/api/mcp",
        "--header",
        "Authorization: Bearer tf_live_<your_token>"
      ]
    }
  }
}

>_ Direct HTTP usage

For HTTP-native MCP clients

If you are not using mcp-remote or Claude Desktop, the MCP endpoint is HTTP JSON-RPC at /api/mcp. Standard MCP discovery, tool listing, and tool calls all work over POST.

POST https://terminalfeed.io/api/mcp
Authorization: Bearer tf_live_<your_token>   (optional, premium only)
Content-Type: application/json

>_ Premium tools (USDC required)

12 paid endpoints, $0.02 per credit

Composed, normalized, multi-source data. Each endpoint has a deterministic credit cost.

tf_premium_briefingComposed BTC + Fear and Greed + earthquakes + HN + ISS + predictions1 CR
tf_premium_macroFRED + Finnhub + Frankfurter rollup, history supported2 CR
tf_premium_crypto_deepPer-coin deep dive across CoinGecko + on-chain network stats2 CR
tf_premium_agent_contextCurated paste-ready system prompt of current world state2 CR
tf_premium_sentimentCrypto F and G plus trending symbols with sentiment scoring2 CR
tf_premium_world_deltasPolling endpoint, events newer than ?since=ISO timestamp2 CR
tf_premium_correlation_matrixComputed correlations across 10 historical series2 CR
tf_premium_whalesLarge BTC, ETH, Solana transactions with attribution2 CR
tf_premium_exchange_flows19-wallet labeled list of exchange-controlled addresses2 CR
tf_premium_defi_tvlTop-50 DeFi protocols + chain rollups, normalized2 CR
tf_premium_stablecoin_flowsTop-20 stablecoins with 1d, 7d, 30d deltas + bias2 CR
tf_premium_github_velocityGitHub trending repos with computed velocity score2 CR

>_ Sister Server: TensorFeed AI Ecosystem

Federated credit pool · Same bearer token works on both

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 (BTC, markets, earthquakes, news, prediction markets); 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: BTC + crypto, stocks, prediction markets, earthquakes, weather, status pages, GitHub trending, HuggingFace, Solana, 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.

>_ Verified on these registries

Already indexed across the major MCP catalogs

>_ Discovery endpoints

Machine-readable contracts

For agent-builders and tooling that wants to introspect.