Connect Hawky to your agent with one URL — zero install. No npm, no Node, no Python. The server runs on our edge at
https://hawky.tech/mcp. Authenticate with your user_api_hash and your agent gets 19 tools — devices, geofences, delivery tasks, reports, share links — callable by prompt.
claude mcp add --transport http hawky https://hawky.tech/mcp \
--header "Authorization: Bearer %%TOKEN%%"> @hawky show me every truck idling more than 15 minutes in CDMXNo token? Leave the header off and the agent will ask for credentials via the hawky_login tool on first use.
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"hawky": {
"url": "https://hawky.tech/mcp",
"transport": "http",
"headers": {
"Authorization": "Bearer %%TOKEN%%"
}
}
}
}{
"mcpServers": {
"hawky": {
"url": "https://hawky.tech/mcp",
"headers": {
"Authorization": "Bearer %%TOKEN%%"
}
}
}
}[mcp_servers.hawky]
url = "https://hawky.tech/mcp"
[mcp_servers.hawky.headers]
Authorization = "Bearer %%TOKEN%%"/mcp.curl -s https://hawky.tech/mcp \
-H "Authorization: Bearer %%TOKEN%%" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -s https://hawky.tech/mcp \
-H "Authorization: Bearer %%TOKEN%%" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"hawky_get_devices_latest"}}'Any MCP-compatible client that supports remote HTTP transport can connect — just point it at https://hawky.tech/mcp.
GitHub · @hawky/mcp · Build your own Uber Eats on Hawky · All guides
No token yet? Use the 🔒 Login button at the top of this page or call hawky_login from any agent that has the MCP installed.