🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

apibase-mcp-client

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apibase-mcp-client

MCP client for APIbase.pro — connect AI agents to 300+ tools across 84 providers. Dual-rail payments: x402 (USDC on Base) + MPP (USDC on Tempo/Stripe).

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

APIbase MCP Client

MCP client for APIbase.pro — connect AI agents to 300+ tools across 84 providers via the Model Context Protocol. Dual-rail payments: x402 (USDC on Base) + MPP (USDC on Tempo/Stripe).

Available as two identical packages:

PackageInstall
@apibase11/mcp-clientnpx -y @apibase11/mcp-client
apibase-mcp-clientnpx -y apibase-mcp-client

Quick Start

npx -y apibase-mcp-client

Usage

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "apibase": {
      "command": "npx",
      "args": ["-y", "@apibase11/mcp-client"]
    }
  }
}

With API key:

{
  "mcpServers": {
    "apibase": {
      "command": "npx",
      "args": ["-y", "@apibase11/mcp-client", "ak_live_YOUR_KEY"]
    }
  }
}

Or via environment variable:

{
  "mcpServers": {
    "apibase": {
      "command": "npx",
      "args": ["-y", "@apibase11/mcp-client"],
      "env": {
        "APIBASE_API_KEY": "ak_live_YOUR_KEY"
      }
    }
  }
}

Cursor / Windsurf / VS Code

Same config pattern — add to your MCP settings:

{
  "command": "npx",
  "args": ["-y", "apibase-mcp-client"]
}

Streamable HTTP (no client needed)

Most modern MCP clients support remote servers directly:

{
  "mcpServers": {
    "apibase": {
      "url": "https://apibase.pro/mcp"
    }
  }
}

Authentication

Three modes (in priority order):

  • CLI argument: npx apibase-mcp-client ak_live_YOUR_KEY
  • Environment variable: APIBASE_API_KEY=ak_live_YOUR_KEY
  • Auto-register: omit the key — APIbase creates one automatically on first request

Payment

APIbase supports dual-rail payments — agents can pay using either protocol:

ProtocolNetworkTokenHow
x402BaseUSDCX-Payment header
MPPTempo (Stripe)USDCAuthorization: Payment header

Free tools work without payment. Paid tools return HTTP 402 with payment instructions for both protocols. Use mppx SDK or Tempo CLI for automatic payment handling.

# AgentCash — one-command setup
npx agentcash add https://apibase.pro

Available Tools

300+ tools across 30+ categories:

  • Travel: flights, hotels, airports (Amadeus, Sabre, Aviasales)
  • Finance: stocks, forex, economic data (Finnhub, ECB, FRED)
  • Crypto: prices, markets, DEX, prediction markets (CoinGecko, Polymarket, Hyperliquid)
  • Search: web, news, semantic, AI (Serper, Tavily, Exa)
  • Health: nutrition, drugs, clinical trials (USDA, OpenFDA, ClinicalTrials.gov)
  • Maps: geocoding, routing, walkability (Geoapify, Walk Score)
  • Entertainment: movies, games, anime, music (TMDB, RAWG, IGDB, Jikan)
  • Legal: regulations, court opinions, SEC filings (Regulations.gov, CourtListener, EDGAR)
  • Infrastructure: DNS, domains, browser sessions (Cloudflare, NameSilo, Browserbase)
  • And more — education, jobs, space, weather, messaging, AI tools

Use tools/list to discover all available tools.

How It Works

Stdio-to-HTTP bridge: translates MCP stdio transport (used by Claude Desktop, Cursor, etc.) to Streamable HTTP transport (used by APIbase server). No tool re-registration — pure transport proxy.

Keywords

mcp

FAQs

Package last updated on 26 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts