PlexMCP Documentation
Learn how to connect, manage, and scale your Model Context Protocol (MCP) servers with PlexMCP. This documentation covers the hosted platform. For self-hosted deployments, see the AxonMCP open source project.
Quick Start
Get your first MCP connection working in just a few steps.
Create an Account
Sign up for PlexMCP and create your first organization.
Generate an API Key
Navigate to API Keys in your dashboard and create a new key.
Add MCP Servers
Configure your MCP server endpoints in the MCPs section.
{
"name": "my-weather-mcp",
"endpoint": "https://weather-mcp.example.com",
"transport": "sse"
}Connect Your Client
Use the configuration in your AI client to connect.
Authentication
All API requests require authentication using an API key.
Include your API key in the Authorization header:
Authorization: Bearer pk_live_xxxxxxxxxxxxClient Integration
Connect PlexMCP to your favorite AI tools and IDEs.
claude_desktop_config.json{
"mcpServers": {
"plexmcp": {
"url": "https://api.plexmcp.com/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
API Reference
Base URL: https://api.plexmcp.com
/v1/mcpsList all MCP servers/v1/mcpsCreate a new MCP server/v1/mcps/:idGet MCP server details/v1/mcps/:idUpdate MCP server/v1/mcps/:idDelete MCP server/v1/mcp/:id/tools/callCall a tool on an MCP serverTeam Management
PlexMCP supports team collaboration with role-based access control.
- Owner - Full access, billing management
- Admin - Manage MCPs, API keys, and members
- Member - Use MCPs, view analytics
- Viewer - Read-only access
- SSO/SAML support (Team & Enterprise)
- Audit logging
- IP allowlisting
- API key rotation