#!/usr/bin/env node /** * RLM Analyzer MCP Server * Exposes RLM analysis capabilities via Model Context Protocol * Supports Gemini, Amazon Bedrock, and Claude (Anthropic) providers * * Usage with Claude Code: * Add to ~/.claude/claude_desktop_config.json: * * For Gemini (default): * { * "mcpServers": { * "rlm-analyzer": { * "command": "npx", * "args": ["rlm-analyzer-mcp"], * "env": { "GEMINI_API_KEY": "your_key" } * } * } * } * * For Amazon Bedrock: * { * "mcpServers": { * "rlm-analyzer": { * "command": "npx", * "args": ["rlm-analyzer-mcp"], * "env": { * "RLM_PROVIDER": "bedrock", * "AWS_REGION": "us-east-1", * "AWS_ACCESS_KEY_ID": "your_key", * "AWS_SECRET_ACCESS_KEY": "your_secret" * } * } * } * } * * For Claude (Anthropic): * { * "mcpServers": { * "rlm-analyzer": { * "command": "npx", * "args": ["rlm-analyzer-mcp"], * "env": { * "RLM_PROVIDER": "claude", * "ANTHROPIC_API_KEY": "your_key" * } * } * } * } */ export declare function startMcpServer(): Promise; //# sourceMappingURL=mcp-server.d.ts.map