diff --git a/claudeconnector/lead411/README.md b/claudeconnector/lead411/README.md new file mode 100644 index 0000000000..11f165e9d6 --- /dev/null +++ b/claudeconnector/lead411/README.md @@ -0,0 +1,9 @@ +# Lead411 MCP Connector + +Lead411 MCP integration for Claude. + +Server: +https://mcp.lead411.com + +Authentication: +Users must provide their Lead411 API key. diff --git a/claudeconnector/lead411/icon.png b/claudeconnector/lead411/icon.png new file mode 100644 index 0000000000..d377dd2c90 Binary files /dev/null and b/claudeconnector/lead411/icon.png differ diff --git a/claudeconnector/lead411/lead411-icon.png b/claudeconnector/lead411/lead411-icon.png new file mode 100644 index 0000000000..d377dd2c90 Binary files /dev/null and b/claudeconnector/lead411/lead411-icon.png differ diff --git a/claudeconnector/lead411/server.json b/claudeconnector/lead411/server.json new file mode 100644 index 0000000000..fdb7e0ea0e --- /dev/null +++ b/claudeconnector/lead411/server.json @@ -0,0 +1,20 @@ +{ + "name": "lead411", + "display_name": "Lead411", + "description": "Use Lead411 features directly inside Claude.", + "version": "1.0.0", + "icon": "lead411-icon.png", + "server": { + "url": "https://mcp.lead411.com", + "headers": { + "X-API-KEY": "${api_key}" + } + }, + "inputs": { + "api_key": { + "type": "string", + "description": "Enter your Lead411 API key", + "required": true + } + } +}