Frequently Asked Questions
Common questions about PlexMCP.
General
What is PlexMCP?
PlexMCP is a unified gateway for Model Context Protocol (MCP) servers. It lets you manage, monitor, and secure access to multiple MCPs through a single dashboard and API.
What is MCP?
Model Context Protocol (MCP) is a standard for AI agents to interact with tools and resources. MCPs expose functions (tools), data (resources), and templates (prompts) that AI assistants like Claude can use.
Is PlexMCP open source?
Yes! PlexMCP is open source. You can self-host it or use our managed cloud service. See oss.plexmcp.com for self-hosting documentation.
How is PlexMCP different from using MCPs directly?
PlexMCP adds:
- Unified authentication: One API key for all MCPs
- Management dashboard: Visual interface for configuration
- Analytics: Usage tracking and monitoring
- Team collaboration: Multi-user access with roles
- Security: Rate limiting, access controls, audit logs
Getting Started
How do I get started?
- Create an account
- Add your first MCP
- Generate an API key
- Start making requests
See our Quickstart Guide for details.
Do I need to install anything?
For the cloud service, no installation is needed. Just sign up and start using the API.
For self-hosting, see oss.plexmcp.com.
What MCPs can I use?
Any MCP that implements the standard protocol can be registered with PlexMCP, including:
- Custom MCPs you build
- Community MCPs
- Third-party MCP services
API & Integration
How do I authenticate?
Use API keys in the Authorization header:
curl -H "Authorization: Bearer pk_live_xxxxx" https://api.plexmcp.com/v1/mcps
What's the API base URL?
https://api.plexmcp.com/v1
Are there SDKs available?
Yes! Official SDKs for:
- TypeScript/JavaScript:
npm install @plexmcp/sdk - Python:
pip install plexmcp - Go:
go get github.com/plexmcp/plexmcp-go
How do I connect Claude Desktop?
Add PlexMCP to your Claude Desktop config:
{
"mcpServers": {
"plexmcp": {
"command": "npx",
"args": ["-y", "@plexmcp/client"],
"env": {
"PLEXMCP_API_KEY": "pk_live_xxxxx"
}
}
}
}
See Claude Desktop Integration for details.
Pricing & Billing
Is there a free tier?
Yes! The free tier includes:
- 5 MCPs
- 2 API connections
- 1,000 requests/month
- 1 team member
What happens if I exceed my limits?
Free plan: API returns 429 errors until next billing period.
Paid plans: Overage charges apply at $0.001 per request.
Can I try Pro before paying?
Yes! Start a 14-day free trial of Pro. No credit card required.
How do I cancel?
Go to Billing → Cancel Subscription. Access continues until period end.
Security
Is my data secure?
Yes. We implement:
- TLS 1.3 encryption for all traffic
- API keys hashed with Argon2
- SOC 2 compliant infrastructure
- Regular security audits
We don't store MCP request/response content.
Can I use SSO/SAML?
SSO/SAML is available on Team and Enterprise plans.
Do you offer audit logs?
Audit logs are available on Team and Enterprise plans, with configurable retention.
Troubleshooting
My MCP shows as "Unhealthy"
- Check if your MCP server is running
- Verify the endpoint URL is correct
- Test the MCP directly with curl
- Check your MCP server logs
API returns "Invalid API Key"
- Verify the complete key was copied
- Check the key hasn't been revoked
- Ensure it hasn't expired
- Confirm you're using
Bearerprefix
Requests are slow
- Check MCP server performance
- Verify network connectivity
- Consider using a closer region
- Contact support if issue persists
Rate limited (429 errors)
- Implement exponential backoff
- Check
Retry-Afterheader - Consider upgrading your plan
- Optimize request patterns
Enterprise
What's included in Enterprise?
- Custom request limits
- Dedicated support
- Custom SLA (up to 99.99%)
- IP allowlisting
- Extended audit log retention
- SSO/SAML
- On-premises option
How do I get Enterprise pricing?
Contact sales@plexmcp.com with your requirements.
Can I self-host with Enterprise support?
Yes. Enterprise includes support for self-hosted deployments.
Still Have Questions?
- Documentation: You're here!
- Community: GitHub Discussions
- Email: support@plexmcp.com
- Sales: sales@plexmcp.com