HasData MCP Server
Model Context Protocol server for HasData scraping and search APIs. Connect any MCP-compatible AI client to 40 ready-to-use data tools.
Quick Start
Claude Desktop. Add to claude_desktop_config.json:
{
"mcpServers": {
"hasdata": {
"type": "http",
"url": "https://mcp.hasdata.com/api/mcp",
"headers": {
"x-api-key": "<your-api-key>"
}
}
}
}Claude Code:
claude mcp add hasdata -t http https://mcp.hasdata.com/api/mcp --header "x-api-key: <your-api-key>"Cursor. Add to ~/.cursor/mcp.json or .cursor/mcp.json:
{
"mcpServers": {
"hasdata": {
"url": "https://mcp.hasdata.com/api/mcp",
"headers": {
"x-api-key": "<your-api-key>"
}
}
}
}Cline. Add the hasdata server to your Cline MCP settings file:
{
"mcpServers": {
"hasdata": {
"url": "https://mcp.hasdata.com/api/mcp",
"type": "streamableHttp",
"headers": {
"x-api-key": "<your-api-key>"
},
"disabled": false
}
}
}






