Getting Started with Plugged.in
Get up and running in 5 minutes. Learn how to set up MCP servers, configure clients, and start building AI-powered applications.
Prerequisites
Quick Start (5 Minutes)
Visit plugged.in and sign up using GitHub (recommended for developers) or email with password.
After logging in, navigate to Settings → API Keys. Click 'Generate New API Key' and give it a descriptive name.

⚠️ Copy the generated key immediately - you won't see it again!
Open your terminal and run the following command to install the Plugged.in MCP Proxy:
npx @pluggedin/mcp-proxy@latest --help
This will show you the available options. The proxy acts as a bridge between your MCP client and all your configured servers.
Add the Plugged.in proxy to your MCP client configuration. Choose your client below:
Configuration file location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"pluggedin": {
"command": "npx",
"args": ["-y", "@pluggedin/mcp-proxy@latest"],
"env": {
"PLUGGEDIN_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
Restart your MCP client and look for the pluggedin tools to confirm the connection is working:
- pluggedin_discover_tools - Discover capabilities from your servers
- pluggedin_rag_query - Query your document library
- pluggedin_send_notification - Send custom notifications

Core Concepts
Your First Steps
Navigate to 'MCP Servers' in the sidebar and click 'Add New Server'. Choose a server type (NPX, Docker, Binary, or Other).

Example - Add the filesystem server:
Name: Filesystem Access
Type: NPX
Command: @modelcontextprotocol/server-filesystem
Arguments: /path/to/allowed/directory
The MCP Playground lets you test servers with any AI model. Go to 'Playground' in the sidebar, select your profile and AI model, then start chatting!

- Multi-model support via Langchain
- Virtual scrolling for long conversations
- Real-time operation logging
- Custom model instructions
Organize related servers into collections. Navigate to 'Collections', click 'Create New Collection', add servers from your profile, and set visibility preferences.
Make your servers discoverable by clicking 'Share Server' on any configured server. Choose visibility settings, add helpful notes and examples, then track installations and ratings.
Advanced Features
Troubleshooting
"Session not found" error
- Ensure your API key is valid
- Check if the MCP proxy is running
- Verify your client configuration
Servers not initializing
- Check server logs in the Playground
- Verify command paths and arguments
- Ensure required dependencies are installed
RAG queries not working
- Confirm documents are uploaded and processed
- Check if RAG is enabled in Playground settings
- Verify your subscription includes RAG features
Next Steps
Quick Reference
Essential Commands
# Install MCP Proxy npx @pluggedin/mcp-proxy@latest # Generate encryption key (self-hosted) pnpm generate-encryption-key # Run migrations (self-hosted) pnpm db:migrate
Configuration Examples
{
"mcpServers": {
"pluggedin": {
"command": "npx",
"args": ["-y", "@pluggedin/mcp-proxy@latest"],
"env": {
"PLUGGEDIN_API_KEY": "your-api-key"
}
}
}
}