MCP Installation
The MCP server is currently in development and not yet published. The installation instructions below describe the planned setup.
Install Globally
npm install -g @laddro/career-mcpClaude Code
Add to your Claude Code settings (~/.claude/settings.json):
{
"mcpServers": {
"laddro": {
"command": "laddro-career-mcp",
"env": {
"LADDRO_API_KEY": "YOUR_API_KEY"
}
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"laddro": {
"command": "npx",
"args": ["-y", "@laddro/career-mcp"],
"env": {
"LADDRO_API_KEY": "YOUR_API_KEY"
}
}
}
}Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"laddro": {
"command": "npx",
"args": ["-y", "@laddro/career-mcp"],
"env": {
"LADDRO_API_KEY": "YOUR_API_KEY"
}
}
}
}Environment Variables
| Variable | Required | Description |
|---|---|---|
LADDRO_API_KEY | Yes | Your API key from console.laddro.com |
LADDRO_BASE_URL | No | Override base URL (default: https://api.laddro.com) |
Source
Last updated on