Submit an MCP server
submit_serverAdd an MCP server to the registry. New submissions are reviewed by a maintainer before they appear in search; get_server shows their status meanwhile. Fill in what you know from the server's README or package metadata. If the result is an error, fix the fields it names and call again. Never include secrets: env_vars takes variable names only, not values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Unique name: a reverse-DNS namespace you can vouch for, a slash, and a short name. For a GitHub project use io.github.<owner>/<repo>, e.g. io.github.acme/weather-mcp. Lowercase letters, digits, dots, hyphens and underscores. | |
| tags | No | Lowercase topic tags, e.g. weather, data. | |
| title | Yes | Human-readable name, e.g. Weather. | |
| tools | No | Names of the tools the server exposes. | |
| license | No | SPDX license identifier, e.g. MIT. | |
| version | No | Current version, e.g. 1.2.0. Defaults to 0.1.0. | |
| env_vars | No | Names of environment variables the server needs, e.g. WEATHER_API_KEY. Names only. | |
| transport | Yes | stdio for a server run locally from a package; streamable-http for a hosted server reached by URL; sse only for older hosted servers. | |
| remote_url | No | Required for streamable-http and sse: the URL clients connect to. | |
| description | Yes | What the server does and anything it needs to run, in one or two sentences. | |
| website_url | No | Documentation or home page URL. | |
| repository_url | No | Source repository URL. | |
| package_registry | No | Required for stdio: where the package is published. | |
| package_identifier | No | Required for stdio: the package name or image, e.g. @acme/weather-mcp or ghcr.io/acme/weather-mcp. |