← Back to catalog

Import MCP Servers

Import servers from a Claude Desktop config (claude_desktop_config.json) or a MyMCPAdm.in export file. Imported entries are saved to your personal catalog and will never be overwritten by catalog updates.

JSON Source
Supported formats

Claude Desktop config

The mcpServers block from your claude_desktop_config.json. Docker-based servers are translated automatically. Servers using npx, node, or other non-Docker commands are imported with the image field left blank — fill it in before enabling.

{
  "mcpServers": {
    "gitea": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "GITEA_TOKEN",
               "ghcr.io/aquity-ai/mcp-gitea:latest"],
      "env": { "GITEA_TOKEN": "your-token" }
    }
  }
}

MyMCPAdm.in export

The JSON produced by the Export function on any MyMCPAdm.in instance. Round-trips without data loss.

{
  "version": "1",
  "servers": [
    {
      "id": "mcp-gitea",
      "name": "Gitea",
      "category": "productivity",
      "image": "ghcr.io/aquity-ai/mcp-gitea:latest",
      "transport": "stdio",
      "env": [{ "key": "GITEA_TOKEN", "label": "API Token", "secret": true }]
    }
  ]
}
Cancel