MCP Omni-Tool

MCP Omni-Tool

A single MCP server that provides dynamic access to thousands of APIs through discovery and proxy, eliminating the need to install and configure multiple separate MCP servers.

Category
Visit Server

README

<div align="center">

๐Ÿ”ฎ MCP Omni-Tool

Stop installing 50 MCP servers. Install one.

One MCP server. Thousands of APIs. Zero config headaches.

npm version License: MIT MCP Compatible

<br />

Your AI agent shouldn't need 50 different MCP servers to be useful. It needs one that connects to everything.

<br />

Get Started โ†’ ยท See Examples โ†’ ยท Get $5 Free Credit โ†’

</div>


๐Ÿคฏ The Problem

Every new API your agent needs = another MCP server to find, install, configure, and maintain.

Want Slack, GitHub, Stripe, Twilio, and 46 other services? That's 50 package.json entries, 50 sets of API keys, 50 things that can break on update.

There's a better way.

โšก The Solution

MCP Omni-Tool is a single MCP server powered by AgentClear that gives your AI agent dynamic access to thousands of APIs through one install and one API key.

Your agent discovers what it needs, then calls it โ€” all through a unified proxy. No per-service config. No dependency hell.

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  Your Agent  โ”‚โ”€โ”€โ”€โ”€โ”€โ–ถโ”‚  MCP Omni-Tool   โ”‚โ”€โ”€โ”€โ”€โ”€โ–ถโ”‚  AgentClear Gateway  โ”‚
โ”‚  (Claude,    โ”‚      โ”‚  (1 MCP server)  โ”‚      โ”‚                      โ”‚
โ”‚   Cursor,    โ”‚      โ”‚                  โ”‚      โ”‚  Slack โ”€ GitHub      โ”‚
โ”‚   etc.)      โ”‚โ—€โ”€โ”€โ”€โ”€โ”€โ”‚                  โ”‚โ—€โ”€โ”€โ”€โ”€โ”€โ”‚  Stripe โ”€ Twilio     โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜      โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜      โ”‚  Notion โ”€ Linear     โ”‚
                                                โ”‚  ... 1000s more      โ”‚
                                                โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿš€ Quick Start

1. Install

npm install -g mcp-omni-tool

2. Get Your API Key

Sign up at agentclear.dev and grab your key (starts with axk_).

๐ŸŽ Every new account gets $5 in free credit โ€” no card required.

3. Configure

Add to your MCP client config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "omni-tool": {
      "command": "mcp-omni-tool",
      "env": {
        "AGENTCLEAR_API_KEY": "axk_your_key_here"
      }
    }
  }
}

4. Go

That's it. Your agent now has access to thousands of APIs.


๐Ÿ“– Usage

MCP Omni-Tool exposes two core operations to your agent:

discover โ€” Find Available APIs

Your agent calls discover to search for services matching what it needs.

POST https://agentclear.dev/api/discover

{
  "query": "send a Slack message",
  "api_key": "axk_your_key_here"
}

Response:

{
  "services": [
    {
      "service_id": "slack_post_message",
      "name": "Slack โ€” Post Message",
      "description": "Send a message to a Slack channel or DM",
      "parameters": {
        "channel": "string (required)",
        "text": "string (required)",
        "thread_ts": "string (optional)"
      }
    }
  ]
}

proxy โ€” Call Any Discovered API

Once discovered, your agent calls the service directly through the proxy:

POST https://agentclear.dev/api/proxy/slack_post_message

{
  "api_key": "axk_your_key_here",
  "params": {
    "channel": "#general",
    "text": "Deployed v2.4.1 to production โœ…"
  }
}

That's the entire pattern. Discover โ†’ Proxy. Your agent figures out the rest.


๐Ÿ“Š Why Omni-Tool?

50 Individual MCP Servers 1 MCP Omni-Tool
Install 50 packages, 50 configs 1 package, 1 key
API Keys Manage 50 separate keys 1 AgentClear key
Updates 50 packages to keep current 1 package, always current
New APIs Find โ†’ install โ†’ configure โ†’ restart Already there. Just call it.
Agent Complexity Must know which server handles what Discovers capabilities dynamically
Failure Surface 50 potential breaking points 1 stable gateway
Setup Time Hours 2 minutes
Cost $0 + your time ร— 50 $5 free to start

๐ŸŽ $5 Free Credit for New Signups

Every new AgentClear account gets $5 in free credit โ€” no credit card required.

That's enough for hundreds of API calls to test integrations, build prototypes, or just see what your agent can actually do when it has access to everything.

โ†’ Sign up at agentclear.dev


๐Ÿ’ฐ Framework Authors & Template Builders: Earn 40% Revenue Share

Building an MCP-powered template, framework, starter kit, or boilerplate?

Bundle MCP Omni-Tool and earn 40% of the revenue generated by users who sign up through your referral.

How it works:

  1. Include MCP Omni-Tool in your project's MCP config
  2. Register as a referral partner at agentclear.dev/partners
  3. Add your referral tag to the config
  4. Earn 40% rev-share on every user who activates through your template

This isn't an afterthought affiliate program โ€” it's a core part of the model. We want framework authors to win when their users succeed.

โ†’ Become a Partner


๐Ÿ”ง Supported Clients

MCP Omni-Tool works with any MCP-compatible client:

  • Claude Desktop
  • Cursor
  • Windsurf
  • Continue
  • Custom MCP integrations

๐Ÿ”‘ API Key Format

All AgentClear API keys start with axk_ followed by a unique token:

axk_a1b2c3d4e5f6...

Keep your key secure. You can rotate keys at any time from the AgentClear dashboard.


๐Ÿ“ License

MIT ยฉ AgentClear


<div align="center">

Built by AgentClear โ€” the universal API gateway for AI agents.

Get Started ยท Documentation ยท Partner Program

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured