{"service":"lm-mcp","entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","auth":{"supported":["Authorization: Bearer <token> (OAuth / browser sign-in)"],"recommended":"Authorization: Bearer <token> — sign in through your AI client (OAuth)","apiKeyHeaderAllowed":false,"oauth":{"authorizationServer":"https://mcp.leadmagic.io","authorizationServerMetadata":"https://mcp.leadmagic.io/.well-known/oauth-authorization-server","registrationEndpoint":"https://mcp.leadmagic.io/oauth/register","protectedResourceMetadata":"https://mcp.leadmagic.io/.well-known/oauth-protected-resource","protectedResourceMetadataMcpPath":"https://mcp.leadmagic.io/.well-known/oauth-protected-resource/mcp","scopes":["openid","profile","email","offline_access"],"staticPublicClient":{"clientId":"4b9eLjoGVCJ1Dvnc","clerkApplicationName":"LeadMagic MCP & CLI (static)"}}},"clients":[{"id":"cursor","name":"Cursor","aliases":["cursor","anysphere"],"vendor":"cursor","products":["Cursor"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"oauth_dynamic_registration","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"manual","label":"Official Cursor plugin (recommended)","scope":"manual","hint":"OAuth-default MCP plus rules, skills, agent, and commands—matches Cursor marketplace expectations. Prefer this over hand-written mcp.json.","snippet":"Repository: https://github.com/LeadMagic/leadmagic-cursor-plugin\nInstall via marketplace, team marketplace import, or local symlink (see that repo README)."},{"format":"json","label":"Project MCP (OAuth)","scope":"project","file":".cursor/mcp.json","path":"Project root","hint":"Remote streamable HTTP: `url` only (Cursor v0.48+). OAuth + DCR run in Cursor; fully quit and reopen after edits.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"url\": \"https://mcp.leadmagic.io/mcp\"\n    }\n  }\n}"},{"format":"json","label":"User MCP (OAuth)","scope":"global","file":"mcp.json","path":"~/.cursor/","hint":"Global `~/.cursor/mcp.json`. Same URL-only shape as GitHub MCP’s Cursor guide; restart Cursor after changes.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"url\": \"https://mcp.leadmagic.io/mcp\"\n    }\n  }\n}"},{"format":"json","label":"Project MCP (API key from env)","scope":"project","file":".cursor/mcp.json","path":"Project root","hint":"When OAuth is blocked. Set LEADMAGIC_API_KEY in an environment Cursor inherits (not in committed files).","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"${LEADMAGIC_API_KEY}\"\n      }\n    }\n  }\n}"},{"format":"json","label":"User MCP (API key from env)","scope":"global","file":"mcp.json","path":"~/.cursor/","hint":"Global config with ${LEADMAGIC_API_KEY} interpolation.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"${LEADMAGIC_API_KEY}\"\n      }\n    }\n  }\n}"}]},{"id":"anthropic","name":"Anthropic / Claude","aliases":["anthropic","claude","claude-desktop","claude-code","claude-ai","cowork","claude-connectors"],"vendor":"anthropic","products":["Claude Desktop","Claude Code","Claude.ai","Cowork"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"oauth_dynamic_registration","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Claude.ai / Desktop remote connector (OAuth)","scope":"manual","hint":"Add under Customize > Connectors on claude.ai (remote MCP is not configured via claude_desktop_config.json). Anthropic documents OAuth callbacks on claude.ai and claude.com — LeadMagic DCR registers both.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\"\n    }\n  }\n}"},{"format":"cli","label":"Claude Code CLI (OAuth — recommended)","scope":"manual","hint":"Matches Anthropic’s current docs: HTTP transport, then run `/mcp` in Claude Code to sign in. Optional: `--callback-port <n>` if your flow needs a fixed `http://localhost:<n>/callback`. SSE transport is deprecated.","snippet":"claude mcp add --transport http leadmagic https://mcp.leadmagic.io/mcp"},{"format":"json","label":"Claude Code .mcp.json (OAuth)","scope":"project","file":".mcp.json","path":"Project root","hint":"Same shape as Claude Code docs (`type` + `url`). Use `/mcp` to authenticate. For `authServerMetadataUrl` override (OIDC), see https://code.claude.com/docs/en/mcp — requires Claude Code v2.1.64+.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\"\n    }\n  }\n}"},{"format":"manual","label":"Claude Desktop remote MCP note","scope":"global","file":"claude_desktop_config.json","path":"~/Library/Application Support/Claude/","hint":"Claude Desktop remote MCP must be added through Claude > Customize > Connectors. Anthropic’s current docs say Desktop will not connect to remote servers configured directly in claude_desktop_config.json."},{"format":"cli","label":"Claude Code CLI (API key)","scope":"manual","hint":"When OAuth is blocked — same URL with a static header (never commit real keys).","snippet":"claude mcp add --transport http leadmagic https://mcp.leadmagic.io/mcp \\\n  --header \"x-leadmagic-key: YOUR_API_KEY\""},{"format":"json","label":"Claude Code .mcp.json (API key)","scope":"project","file":".mcp.json","path":"Project root","hint":"Use `${LEADMAGIC_API_KEY}` in headers for team-shared files (Claude Code expands env vars in .mcp.json).","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"${LEADMAGIC_API_KEY}\"\n      }\n    }\n  }\n}"},{"format":"manual","label":"Claude.ai static OAuth client ID (no DCR)","scope":"manual","hint":"If your workspace cannot use dynamic registration: use the MCP URL and public client ID below (secret blank — PKCE). Consent screen shows this Clerk app name. Prefer OAuth JSON + DCR when available.","snippet":"Server URL: https://mcp.leadmagic.io/mcp\nOAuth Client ID: 4b9eLjoGVCJ1Dvnc\nOAuth Client Secret: (blank)\nClerk app (consent): LeadMagic MCP & CLI (static)"}]},{"id":"openai","name":"OpenAI","aliases":["openai","chatgpt","responses-api","developer-mode"],"vendor":"openai","products":["ChatGPT Developer Mode","Responses API"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"oauth_dynamic_registration","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"manual","label":"ChatGPT / Developer Mode (OAuth — recommended)","scope":"manual","hint":"ChatGPT uses MCP OAuth + DCR (PKCE, S256). It registers `redirect_uri` dynamically — often `https://chatgpt.com/connector/oauth/{callback_id}` (shown in app settings) or legacy `…/connector_platform_oauth_redirect`. LeadMagic preserves exact per-app callbacks for new DCR apps, while the static Clerk app still carries the known legacy callback set. Run `bun run sync:clerk-static-oauth` after changing `KNOWN_MCP_REDIRECT_URIS`."},{"format":"manual","label":"Responses API / server SDK (API key)","scope":"manual","hint":"For machine clients, pass this MCP URL with `x-leadmagic-key` or `Authorization: Bearer` (lm-ui token) — not ChatGPT browser OAuth."}]},{"id":"ai-sdk","name":"Vercel AI SDK","aliases":["ai-sdk","vercel-ai-sdk","@ai-sdk/mcp","openai-tools-mcp"],"vendor":"vercel","products":["AI SDK Core","@ai-sdk/mcp","@ai-sdk/openai"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"typescript","label":"createMCPClient","scope":"manual","hint":"Recommended for authenticated hosted MCP access in AI SDK apps and agents.","snippet":"import { createMCPClient } from \"@ai-sdk/mcp\";\n\nconst leadmagicMcp = await createMCPClient({\n  transport: {\n    type: \"http\",\n    url: \"https://mcp.leadmagic.io/mcp\",\n    headers: {\n      \"x-leadmagic-key\": \"YOUR_API_KEY\",\n    },\n    redirect: \"error\",\n  },\n});\n\ntry {\n  const tools = await leadmagicMcp.tools();\n  // Pass `tools` into generateText, streamText, or your agent runtime.\n} finally {\n  await leadmagicMcp.close();\n}"},{"format":"typescript","label":"openai.tools.mcp","scope":"manual","hint":"Use for OpenAI Responses-style remote MCP tools through the AI SDK provider layer.","snippet":"import { openai } from \"@ai-sdk/openai\";\n\nconst tools = {\n  leadmagic: openai.tools.mcp({\n    serverLabel: \"leadmagic\",\n    serverUrl: \"https://mcp.leadmagic.io/mcp\",\n    serverDescription:\n      \"LeadMagic B2B enrichment: email validate/find, mobile, profiles, job change, account research, competitors, technographics, role search, jobs, credits.\",\n    headers: {\n      \"x-leadmagic-key\": \"YOUR_API_KEY\",\n    },\n    allowedTools: [\n      \"validate_work_email\",\n      \"find_work_email\",\n      \"research_account\",\n      \"check_credit_balance\",\n      \"find_mobile_number\",\n      \"linkedin_profile_to_work_email\",\n      \"detect_job_change\",\n      \"list_company_competitors\",\n      \"get_company_technographics\",\n      \"find_people_by_role\",\n      \"search_profile\",\n      \"email_to_b2b_profile\",\n      \"find_personal_email\",\n      \"find_jobs\",\n    ],\n  }),\n};"}]},{"id":"vscode","name":"VS Code / Copilot","aliases":["vscode","vs-code","copilot","github-copilot"],"vendor":"microsoft","products":["VS Code MCP","GitHub Copilot in VS Code"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"oauth_dynamic_registration","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Workspace MCP (OAuth)","scope":"project","file":".vscode/mcp.json","path":"Workspace root","hint":"Uses `servers` + `type: http` per VS Code MCP reference — not `mcpServers` (that key is Cursor-only).","snippet":"{\n  \"servers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\"\n    }\n  }\n}"},{"format":"json","label":"User profile MCP (OAuth)","scope":"global","file":"mcp.json","path":"VS Code user profile","hint":"Command Palette: MCP: Open User Configuration — same `servers` shape as workspace OAuth.","snippet":"{\n  \"servers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\"\n    }\n  }\n}"},{"format":"json","label":"Workspace config (API key)","scope":"project","file":".vscode/mcp.json","path":"Workspace root","hint":"Commit to share with your team. Use when OAuth is blocked.","snippet":"{\n  \"servers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"},{"format":"json","label":"User profile config (API key)","scope":"global","file":"mcp.json","path":"VS Code user profile","hint":"MCP: Open User Configuration — fallback if OAuth is unavailable.","snippet":"{\n  \"servers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"windsurf","name":"Windsurf","aliases":["windsurf","codeium"],"vendor":"codeium","products":["Windsurf"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Global config","scope":"global","file":"mcp_config.json","path":"~/.codeium/windsurf/","hint":"You can also open Settings -> Cascade -> MCP Servers.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"serverUrl\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"zed","name":"Zed","aliases":["zed"],"vendor":"zed","products":["Zed"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Global config","scope":"global","file":"settings.json","path":"~/.config/zed/","hint":"Use Agent Panel -> Settings -> Add Custom Server for manual setup.","snippet":"{\n  \"context_servers\": {\n    \"leadmagic\": {\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"cline","name":"Cline","aliases":["cline"],"vendor":"cline","products":["Cline"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Global config","scope":"global","file":"cline_mcp_settings.json","path":"VS Code extension storage","hint":"Or use the MCP Servers panel inside Cline.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      },\n      \"disabled\": false\n    }\n  }\n}"}]},{"id":"roo-code","name":"Roo Code","aliases":["roo","roo-code"],"vendor":"roo","products":["Roo Code"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Project config","scope":"project","file":".roo/mcp.json","path":"Project root","hint":"Commit to share with your team.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      },\n      \"disabled\": false\n    }\n  }\n}"},{"format":"json","label":"Global config","scope":"global","file":"mcp_settings.json","path":"~/.roo/","hint":"Available in every Roo Code session.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      },\n      \"disabled\": false\n    }\n  }\n}"}]},{"id":"opencode","name":"OpenCode","aliases":["opencode","open-code"],"vendor":"opencode","products":["OpenCode"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"authorization_bearer","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Project config","scope":"project","file":"opencode.json","path":"Project root","hint":"Available to this project only.","snippet":"{\n  \"$schema\": \"https://opencode.ai/config.json\",\n  \"mcp\": {\n    \"leadmagic\": {\n      \"type\": \"remote\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"oauth\": false,\n      \"headers\": {\n        \"Authorization\": \"Bearer YOUR_LEADMAGIC_TOKEN\"\n      },\n      \"enabled\": true\n    }\n  }\n}"},{"format":"json","label":"Global config","scope":"global","file":"config.json","path":"~/.config/opencode/","hint":"Available in every OpenCode session.","snippet":"{\n  \"$schema\": \"https://opencode.ai/config.json\",\n  \"mcp\": {\n    \"leadmagic\": {\n      \"type\": \"remote\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"oauth\": false,\n      \"headers\": {\n        \"Authorization\": \"Bearer YOUR_LEADMAGIC_TOKEN\"\n      },\n      \"enabled\": true\n    }\n  }\n}"}]},{"id":"gemini-cli","name":"Gemini CLI","aliases":["gemini","gemini-cli","google-gemini"],"vendor":"google","products":["Gemini CLI"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Global config","scope":"global","file":"settings.json","path":"~/.gemini/","hint":"Gemini CLI also supports an mcp add command.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"httpUrl\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"},{"format":"cli","label":"Gemini CLI command","scope":"manual","hint":"Quick install via terminal.","snippet":"gemini mcp add --transport http leadmagic https://mcp.leadmagic.io/mcp \\\n  -H \"x-leadmagic-key: YOUR_API_KEY\""}]},{"id":"jetbrains","name":"JetBrains IDEs","aliases":["jetbrains","intellij","webstorm","pycharm"],"vendor":"jetbrains","products":["IntelliJ IDEA","WebStorm","PyCharm"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"manual","label":"IDE settings","scope":"manual","file":"Settings -> AI Assistant -> MCP","path":"JetBrains 2025.1+","hint":"Add LeadMagic as an HTTP MCP server with the endpoint and auth header shown above.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"amazon-q","name":"Amazon Q","aliases":["amazon-q","amazonq","q-developer"],"vendor":"aws","products":["Amazon Q Developer"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["oauth_dynamic_registration","api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Project config","scope":"project","file":"default.json","path":".amazonq/","hint":"Available to this project only.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"},{"format":"json","label":"Global config","scope":"global","file":"default.json","path":"~/.aws/amazonq/","hint":"Available in every Q Developer session.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"copilot-agent","name":"Copilot Agent","aliases":["copilot-agent","github-copilot-agent","copilot-coding-agent"],"vendor":"github","products":["GitHub Copilot Coding Agent"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Repository MCP config","scope":"manual","file":"Repository Settings -> Copilot -> Coding agent","path":"github.com","hint":"Paste this into the repository MCP configuration field.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      },\n      \"tools\": [\n        \"*\"\n      ]\n    }\n  }\n}"}]},{"id":"continue","name":"Continue","aliases":["continue","continue-dev"],"vendor":"continue","products":["Continue"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Project config","scope":"project","file":"config.yaml","path":".continue/","hint":"Add under the mcpServers section of your Continue config.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"},{"format":"json","label":"Global config","scope":"global","file":"config.yaml","path":"~/.continue/","hint":"Available in every Continue session.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"amp","name":"Amp (Sourcegraph)","aliases":["amp","sourcegraph","sourcegraph-amp"],"vendor":"sourcegraph","products":["Amp"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"json","label":"Project config","scope":"project","file":"amp.yaml","path":"Project root","hint":"Add LeadMagic as a remote MCP server in your Amp config.","snippet":"{\n  \"mcpServers\": {\n    \"leadmagic\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.leadmagic.io/mcp\",\n      \"headers\": {\n        \"x-leadmagic-key\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}"}]},{"id":"augment","name":"Augment Code","aliases":["augment","augment-code"],"vendor":"augment","products":["Augment Code"],"entrypoint":"https://mcp.leadmagic.io/mcp","server":{"type":"http","url":"https://mcp.leadmagic.io/mcp"},"transport":"streamable-http","supportedAuthModes":["api_key_header","authorization_bearer"],"recommendedAuthMode":"api_key_header","authHeaders":{"apiKeyHeader":"x-leadmagic-key: YOUR_API_KEY","authorizationBearer":"Authorization: Bearer YOUR_LEADMAGIC_TOKEN"},"install":[{"format":"manual","label":"Augment MCP settings","scope":"manual","hint":"In Augment Code settings, add LeadMagic as a remote MCP server with the endpoint and auth header below."}]}]}