by AI-Agent-Hub
Provides keyword and category based discovery of AI agents, monitors web traffic statistics, and exposes an API for listing agents in the DeepNLP marketplace.
The server enables AI assistants and developers to search the AI Agent Marketplace Index by free‑text queries or predefined categories (e.g., coding agents, GUI agents, mobile agents). It also aggregates performance metrics such as search rankings, GitHub stars, and arXiv citations, and offers an API for publishing agents to the marketplace.
git clone https://github.com/AI-Agent-Hub/ai-agent-marketplace-index-mcp.git
cd ai-agent-marketplace-index-mcp
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
uv pip install -e .
uv run -m ai-agent-marketplace-index-mcp
search_ai_agent(q, limit, timeout)
from your LLM workflow or make HTTP requests to the exposed endpoints.search_ai_agent(q: str, limit: int = 100, timeout: int = 5)
signature and register it in the MCP server’s tool list.MCP Server for AI Agent Marketplace Index from DeepNLP, , allowing AI assistants to searches available AI agents Navigation Page function, tools or use cases by "keywords" or "category". such as find all the "AI coding agents", "GUI AI Agents", "Mobile Use Agent", "Desktop Use Agent", etc.
Open Project https://github.com/AI-Agent-Hub/mcp-marketplace
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .
uv run -m ai-agent-marketplace-index-mcp
cd ./ai-agent-marketplace-index-mcp/src/ai-agent-marketplace-index
mcp dev server.py
Add the following to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json
on macOS or %APPDATA%\Claude\claude_desktop_config.json
on Windows):
{
"mcpServers": {
"ai-agent-marketplace-index-mcp": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/ai-agent-marketplace-index-mcp/src/ai-agent-marketplace-index",
"run",
"server.py"
]
}
}
}
General search of AI Agents for information, websites, content and metric statistic of web traffic, etc.
search_ai_agent(q: str, limit: int = 100, timeout: int = 5)
Example: Search Server and Tools
import mcp_marketplace as mcpm
mcpm.set_endpoint("deepnlp") # choose various open mcp marketplace endpoint
result_q = mcpm.search(id="ai-agent-marketplace-index-mcp", mode="dict", page_id=0, count_per_page=100)
result_id = mcpm.search(id="ai-agent-hub/ai-agent-marketplace-index-mcp", mode="dict", page_id=0, count_per_page=100)
tools = mcpm.list_tools(id="ai-agent-hub/ai-agent-marketplace-index-mcp")
Example: Integrate with LLM e.g. Claude
import anthropic
client = anthropic.Anthropic()
# Step 1. search mcp by query/id to find this mcp
# Step 2. Calling LLM for Better Usage and MCP Selection
response = client.messages.create(
model="claude-3-7-sonnet-20250219", max_tokens=1024, tools=tools, messages=[]
)
print(response)
## install remote servers if tools from this mcp are chosen
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "ai-agent-marketplace-index-mcp": { "command": "uv", "args": [ "run", "-m", "ai-agent-marketplace-index-mcp" ], "env": { "BING_API_KEY": "<YOUR_BING_API_KEY>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by exa-labs
Provides real-time web search capabilities to AI assistants via a Model Context Protocol server, enabling safe and controlled access to the Exa AI Search API.
by elastic
Enables natural‑language interaction with Elasticsearch indices via the Model Context Protocol, exposing tools for listing indices, fetching mappings, performing searches, running ES|QL queries, and retrieving shard information.
by graphlit
Enables integration between MCP clients and the Graphlit platform, providing ingestion, extraction, retrieval, and RAG capabilities across a wide range of data sources and connectors.
by mamertofabian
Fast cross‑platform file searching leveraging the Everything SDK on Windows, Spotlight on macOS, and locate/plocate on Linux.
by cr7258
Provides Elasticsearch and OpenSearch interaction via Model Context Protocol, enabling document search, index management, cluster monitoring, and alias operations.
by liuyoshio
Provides natural‑language search and recommendation for Model Context Protocol servers, delivering rich metadata and real‑time updates.
by ihor-sokoliuk
Provides web search capabilities via the SearXNG API, exposing them through an MCP server for seamless integration with AI agents and tools.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, deep‑reasoning, and trending topic retrieval via Search1API, exposed as an MCP server for integration with AI clients.
by cnych
Provides SEO data retrieval via Ahrefs, exposing MCP tools for backlink analysis, keyword generation, traffic estimation, and keyword difficulty, with automated CAPTCHA solving and response caching.