Server data from the Official MCP Registry
350+ production-ready APIs through one MCP server — weather, geocoding, validation, financial data.
350+ production-ready APIs through one MCP server — weather, geocoding, validation, financial data.
Remote endpoints: streamable-http: https://api.apiverve.com/v1/mcp
Valid MCP server (3 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"com-apiverve-mcp-server": {
"url": "https://api.apiverve.com/v1/mcp"
}
}
}From the project's GitHub README.
356+ APIs accessible through the Model Context Protocol
Website • Documentation • API Explorer • Report Bug
The APIVerve MCP Server provides seamless access to 356+ production-ready APIs through the Model Context Protocol. Connect AI assistants like Claude, ChatGPT, and other MCP-compatible clients to a vast ecosystem of data and functionality.
APIVerve is a remote MCP server — there is nothing to run locally. Point your client at the URL below and it will handle sign-in for you.
npx @apiverve/mcp-server
Configures VS Code and Cursor, and prints the manual step for Claude Desktop. Target one client with npx @apiverve/mcp-server cursor.
For headless setups, pass a key instead of using sign-in:
npx @apiverve/mcp-server --api-key YOUR_API_KEY
Python users can do the same with pip install apiverve-mcp then apiverve-mcp (or apiverve-mcp --api-key YOUR_API_KEY).
Claude Desktop — remote servers are added through the app, not a config file:
Settings → Connectors → Add custom connector →
https://api.apiverve.com/v1/mcp
VS Code (mcp.json):
{
"servers": {
"apiverve": {
"type": "http",
"url": "https://api.apiverve.com/v1/mcp"
}
}
}
Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"apiverve": {
"url": "https://api.apiverve.com/v1/mcp"
}
}
}
Two ways in — pick whichever fits:
OAuth (default, recommended) — leave the config as shown above. On first use the server returns an authorization challenge and your client walks you through sign-in. No key is stored on disk, and access can be revoked from the dashboard.
API key — add your key as a header. Useful for CI and headless environments where no browser is available:
{
"mcpServers": {
"apiverve": {
"url": "https://api.apiverve.com/v1/mcp",
"headers": { "x-api-key": "YOUR_API_KEY" }
}
}
}
Claude Desktop's Custom Connectors cannot send custom headers, so it is OAuth-only.
Get a key at https://apiverve.com. Free tier available — no credit card required to start!
Once configured, use APIs naturally in conversation:
User: What's the weather in San Francisco?
Claude: [Uses Weather API]
User: Validate this email: test@example.com
Claude: [Uses Email Validator API]
User: Convert 100 USD to EUR
Claude: [Uses Currency Converter API]
Connect straight to the remote server — no local process involved:
from mcp import ClientSession
from mcp.client.streamable_http import streamablehttp_client
url = "https://api.apiverve.com/v1/mcp"
headers = {"x-api-key": "YOUR_API_KEY"}
async with streamablehttp_client(url, headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
# List available tools
tools = await session.list_tools()
# Call a tool
result = await session.call_tool("emailvalidator", {
"email": "test@example.com"
})
APIVerve uses a flexible token-based pricing model with multiple tiers to fit your needs:
Credit costs vary by API complexity - simple APIs start at 1 credit per call.
x-api-key headerhttps://api.apiverve.com/v1/mcphttps://api.apiverve.com/.well-known/openid-configurationhttps://api.apiverve.com/authorizehttps://api.apiverve.com/tokenhttps://api.apiverve.com/register (Dynamic client registration)Each API is exposed as an MCP tool with:
emailvalidator)If you see authentication errors:
If you hit token limits:
This project is licensed under the MIT License - see the LICENSE file for details.
If you find this useful, please consider starring the repo on GitHub!
Built with ❤️ by APIVerve
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.