Submit your MCP server to Hive Market and reach AI agent developers.
npx) or a public Git repository.npx -y your-package, so it must be published somewhere accessible.Go to Publish and fill out the four-step submission form:
@modelcontextprotocol/server-filesystem)npx)Publishing is free. You keep 100% of your tool's revenue — set your own price and collect payments directly.
Preview your listing, confirm all details, and submit. Your tool goes live immediately — no manual approval queue.
A minimal MCP server npm package should have a binary entry point and list the MCP SDK as a dependency:
{
"name": "@your-org/mcp-server-example",
"version": "1.0.0",
"bin": {
"mcp-server-example": "./dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
}
}Explain what your tool does, what capabilities it gives the AI agent, and what use cases it supports. Users search by keyword, so be specific.
If your server needs API keys or tokens, list them clearly. Tell users where to obtain them and what permissions they need.
Aim for a zero-config npx -y your-package install. Minimize required arguments and provide sensible defaults.
Verify your server works with Claude Desktop, Cursor, and Windsurf before publishing. Each client has slight differences in how it handles tool calls.
Ready to publish?
Head to the Publish page to submit your MCP server. If you need help building one, check out the MCP Basics guide first.