#!/usr/bin/env node /** * MegaSearch MCP Stdio Proxy * * A local MCP server that connects Claude Desktop to MegaSearch API * using OAuth 2.0 client credentials for authentication. * * Usage: * MEGASEARCH_CLIENT_ID=xxx MEGASEARCH_CLIENT_SECRET=yyy megasearch-mcp * * Or in Claude Desktop config: * { * "mcpServers": { * "megasearch": { * "command": "npx", * "args": ["megasearch-mcp"], * "env": { * "MEGASEARCH_CLIENT_ID": "mcp_xxx", * "MEGASEARCH_CLIENT_SECRET": "your_secret", * "MEGASEARCH_BASE_URL": "https://megasearch.prodevs.in" * } * } * } * } */ export {}; //# sourceMappingURL=index.d.ts.map