Quickstart Guide
Get up and running with PlexMCP in 5 minutes. This guide will walk you through creating an account, adding your first MCP, and generating an API key.
Prerequisites
- An MCP server you want to connect (or use our test MCP)
- A modern web browser
Step 1: Create Your Account
- Go to dashboard.plexmcp.com/register
- Sign up with your email or continue with Google/GitHub
- Verify your email address (if using email signup)
- You'll be redirected to your new dashboard
Step 2: Create an Organization
When you first sign in, you'll be prompted to create an organization:
- Enter your organization name (e.g., "My Company" or "Personal")
- Choose a unique slug (e.g., "my-company") - this will be used in API calls
- Click Create Organization
Step 3: Add Your First MCP
- Navigate to MCPs in the sidebar
- Click Add MCP
- Fill in the MCP details:
- Name: A friendly name (e.g., "Weather API")
- Endpoint URL: Your MCP server URL (e.g.,
https://my-mcp.example.com) - Description: Optional description for your team
- Click Create MCP
Getting Started
Don't have an MCP ready? Check out our SDK examples to see how to build and connect your first MCP server.
Step 4: Generate an API Key
- Navigate to API Keys in the sidebar
- Click Create API Key
- Configure your key:
- Name: A descriptive name (e.g., "Development Key")
- Expiration: Choose when the key expires (or never)
- Permissions: Select which MCPs this key can access
- Click Create
- Copy your API key immediately - you won't be able to see it again!
Step 5: Make Your First Request
Use your API key to call an MCP through PlexMCP:
curl -X POST https://api.plexmcp.com/v1/mcp/invoke \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"mcp_id": "your-mcp-id",
"tool": "your-tool-name",
"arguments": {}
}'
Or configure Claude Desktop to use PlexMCP:
{
"mcpServers": {
"plexmcp": {
"command": "npx",
"args": ["-y", "@plexmcp/client"],
"env": {
"PLEXMCP_API_KEY": "YOUR_API_KEY"
}
}
}
}
Next Steps
- Dashboard Tour - Learn about all dashboard features
- Adding MCPs - Deep dive into MCP configuration
- API Key Best Practices - Secure your API keys
- Claude Desktop Integration - Connect Claude Desktop
Troubleshooting
"Invalid API Key" Error
- Make sure you copied the entire API key
- Check that the key hasn't expired
- Verify the key has permission to access the requested MCP
"MCP Not Found" Error
- Verify the MCP ID in your request
- Check that your API key has permission for this MCP
- Ensure the MCP is active in your dashboard
Connection Timeouts
- Check that your MCP server is running and accessible
- Verify the endpoint URL is correct
- Check for any firewall rules blocking the connection