Model Context Protocol
Connect your MCP client
Wire Claude Desktop, Claude Code, ChatGPT, Cursor, or Windsurf to live job and salary data over Model Context Protocol. No API key. Two minutes.
MCP Server URL
Same URL for every client. Streamable HTTP. No auth headers, no tokens, no allowlist.
https://agentic-engineering-jobs.com/api/mcpsearch_jobsget_jobget_salariesPick your client
Claude Desktop
UI stepsUse the Custom Connectors UI. No config file edit needed on recent Claude Desktop builds (Free, Pro, Max, Team, Enterprise).
1. Open Claude Desktop, then Settings (gear icon), then Connectors.
2. Click "Add custom connector".
3. Paste this URL: https://agentic-engineering-jobs.com/api/mcp
4. Leave the OAuth fields empty. The server is public and unauthenticated.
5. Click Add. Restart Claude Desktop.
6. Open a new chat. The tool drawer should list search_jobs, get_job, get_salaries.Verify: Restart Claude Desktop. Open a new chat and click the tool drawer. search_jobs, get_job, and get_salaries should appear.
Claude Code
One CLI commandOne CLI command. Writes to ~/.claude.json by default. Add --scope project to share via .mcp.json, or --scope user for cross-project availability.
claude mcp add --transport http agentic-jobs https://agentic-engineering-jobs.com/api/mcpVerify: Run claude mcp list. agentic-jobs should appear with status connected. Inside Claude Code, type /mcp to confirm tools are loaded.
ChatGPT
UI stepsAvailable on Pro, Business, Enterprise, and Education plans. Free and Plus tiers cannot add custom MCP servers. Developer Mode must be on.
1. ChatGPT, then Settings, then Connectors, then Advanced, then toggle Developer Mode ON.
2. Settings, then Connectors, then Add new connector.
3. Name: Agentic Engineering Jobs
4. MCP Server URL: https://agentic-engineering-jobs.com/api/mcp
5. Authentication: None
6. Click Create. ChatGPT validates the connection and lists tools.
7. New chat. Click +, then select Agentic Engineering Jobs to enable it.Verify: Open a new chat. Click the + menu. Select Agentic Engineering Jobs to enable the connector. Tools load on first use.
Cursor
JSON configProject-scoped via .cursor/mcp.json or global via ~/.cursor/mcp.json. Bare { url } shape, no type field.
{
"mcpServers": {
"agentic-jobs": {
"url": "https://agentic-engineering-jobs.com/api/mcp"
}
}
}Verify: Cursor Settings, then Tools & MCP. agentic-jobs should show 3 tools (search_jobs, get_job, get_salaries) with green status.
Windsurf
JSON configEdit ~/.codeium/windsurf/mcp_config.json. Windsurf uses the serverUrl key, not url. Easy to mix up if you copied the Cursor snippet.
{
"mcpServers": {
"agentic-jobs": {
"serverUrl": "https://agentic-engineering-jobs.com/api/mcp"
}
}
}Verify: Open Cascade. Click the MCP server icon. agentic-jobs should appear with the three tools listed.
Stuck?
Troubleshooting
My tool drawer is empty after I add the server.
ChatGPT does not show "Add new connector" in Settings.
Cursor or Windsurf saved the config but tools never appear.
Claude Code rejects the mcp add command.
My client is older and does not support remote MCP natively.
How do I report a problem?
Prefer REST?
Browse the public API reference
curl examples, filters, error codes, and an interactive playground.