UNPKG

@pluggedin/pluggedin-mcp-proxy

Version:

Unified MCP proxy that aggregates all your MCP servers (STDIO, SSE, Streamable HTTP) into one powerful interface. Access any tool through a single connection, search across unified documents with built-in RAG, and receive notifications from any model. Tes

22 lines (21 loc) 754 B
startCommand: type: stdio configSchema: type: object properties: PLUGGEDIN_API_KEY: type: string description: Your Plugged.in API key for authenticated operations (see plugged.in/api-keys). Leave empty for tool discovery only. PLUGGEDIN_API_BASE_URL: type: string description: Base URL for your Plugged.in instance (optional, defaults to https://plugged.in) commandFunction: | (config) => ({ command: 'node', args: ['dist/index.js'], env: { ...process.env, ...(config.PLUGGEDIN_API_KEY && { PLUGGEDIN_API_KEY: config.PLUGGEDIN_API_KEY }), ...(config.PLUGGEDIN_API_BASE_URL && { PLUGGEDIN_API_BASE_URL: config.PLUGGEDIN_API_BASE_URL }) } })