PluginBench
MCP Server
Active
MIT

TensorFeed MCP Server

ai.tensorfeed/mcp-server

What is the TensorFeed MCP server?

AI news, model pricing, service status, and machine-payable premium tools. AFTA-certified.

How to install TensorFeed

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TENSORFEED_TOKEN
    secret

    Bearer token from /api/payment/buy-credits. Required for paid tiers (full verdicts, 8 to 90 day series, webhook watches, account status). Free tiers (news, status, pricing, verdict previews, 1 to 7 day series, model discovery) work without it. Buy credits in USDC on Base at https://tensorfeed.ai/developers/agent-payments.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@tensorfeed/mcp-server"
      ],
      "env": {
        "TENSORFEED_TOKEN": "<YOUR_TENSORFEED_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@tensorfeed/mcp-server"
      ],
      "env": {
        "TENSORFEED_TOKEN": "<YOUR_TENSORFEED_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@tensorfeed/mcp-server"
      ],
      "env": {
        "TENSORFEED_TOKEN": "<YOUR_TENSORFEED_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tensorfeed/mcp-server"
      ],
      "env": {
        "TENSORFEED_TOKEN": "<YOUR_TENSORFEED_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-server --env TENSORFEED_TOKEN=<YOUR_TENSORFEED_TOKEN> -- npx -y @tensorfeed/mcp-server

Related MCP servers

Read-only Base mainnet reader. Verifies x402 payment settlements + AFTA federation status.

1
TypeScript
MIT
View repository →