AllMCPs Server
Local MCP server to submit and manage MCP server listings on AllMCPs.com directly from AI agents.
Overview
This MCP server enables AI agents to submit new MCP server listings to the AllMCPs.com directory and manage them programmatically. It supports sending metadata such as repository URL, name, contact email, description, and category. Submissions enter a review queue, with an option for instant verification via a badge added to the repository README. Use this server to automate MCP server registration and updates from compatible AI clients.
Use cases
- Submit new MCP servers to the AllMCPs directory
- Manage MCP server listings from AI agents
- Automate verification of MCP listings via README badge
Key features
- Submit MCP server metadata including URL, name, email, description, and category
- Receive claim URL and badge markdown for instant verification
- Integrate with MCP clients via command-line invocation
- Support for pending review queue management
Quick Install
One click to install into your editor, or copy the config below.
Install Config Generator
{
"mcpServers": {
"allmcps-server": {
"command": "npx",
"args": [
"-y",
"https://allmcps.com"
]
}
}
}💡 Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Remote HTTP MCP endpoint detected — using URL transport instead of npx.
{
"mcpServers": {
"allmcps-server": {
"url": "https://allmcps.com"
}
}
}Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Capabilities & Tool Schemas
Inspect callable tools, capabilities, and parameters exposed to AI agents by AllMCPs Server.
Documentation Overview
allmcps-server
The official local MCP server for AllMCPs.com — submit a Model Context Protocol (MCP) server to the directory directly from Claude, Cursor, or any MCP-compatible agent.
Install
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"allmcps": {
"command": "npx",
"args": ["-y", "allmcps-server"]
}
}
}
Tools
submit_mcp
Submit a new MCP server to the AllMCPs directory.
| Argument | Required | Description |
|---|---|---|
url | yes | GitHub repository URL or website of the MCP server |
name | yes | Server name |
email | yes | Where the claim/verify link and submission confirmation are sent — not published on the listing |
description | no | Short summary (pulled from the repo description if omitted) |
category | no | e.g. Database, File System, Web Search, Development |
Submissions land in the pending review queue at allmcps.com. The response
includes a claim_url and a ready-to-paste badge_markdown snippet — adding that badge to your
repo's README verifies the listing instantly instead of waiting on manual review.
Related
- Directory API docs: https://allmcps.com/docs/api
- Remote MCP server (search, install configs, categories): https://allmcps.com/api/mcp
Related MCP Servers
View all alternativesFrequently Asked Questions about AllMCPs Server
What is the AllMCPs Server MCP server used for?
The official MCP server for AllMCPs.com — submit and manage tools directly from your AI.
How do I install AllMCPs Server in Claude Desktop or Cursor?
Copy the client configuration JSON snippet from the installation section above into your claude_desktop_config.json or .cursor/mcp.json file, then restart your AI application.
Is the AllMCPs Server MCP server free and safe to use?
Yes, AllMCPs Server is listed as a free Model Context Protocol server. Always review repository source code and permissions before granting local workspace access to AI agents.