Loading…
A public Model Context Protocol server so an AI can read this site, figure out what a visitor wants, and send hire-intent buyers to the right page. Job seekers are not customers and are not conversions.
https://taskbullet.com/api/mcpAuth: none — read-onlyDiscovery →Agent API (delegate work) →| Server | For | Auth |
|---|---|---|
| This site MCP | Learn what TaskBullet is and route a visitor (hire vs job seeker) | None |
| Hosted Agent MCP | An existing customer's AI (Grok Bot, Cursor, cloud agents) delegates work to a human VA. Endpoint: https://taskbullet.com/api/agent-mcp | x-api-key: tb_live_… |
| @taskbullet/mcp-server | Local stdio alternative for one laptop. Cloud Grok Bots cannot use npx. | tb_live_… |
Claude / Cursor / ChatGPT / Grok (HTTP):
{
"mcpServers": {
"taskbullet": {
"url": "https://taskbullet.com/api/mcp"
}
}
}Grok project config (.grok/config.toml):
[mcp_servers.taskbullet_site]
url = "https://taskbullet.com/api/mcp"
enabled = trueunderstand_site — what TaskBullet is, who it is for, what the site wants (hire a VA).match_intent — classify a visitor message as hire, job seeker, existing client, or Agent API.list_services — VA specialties.get_pricing — PH and US buckets + free trial.recommend_path — canonical URL for a known goal.This MCP is public marketing only. It never returns customer accounts, emails, or work history. It never serves internal ops or admin docs. It does not accept writes. Existing customers who want their AI to delegate work should use the hosted Agent MCP at https://taskbullet.com/api/agent-mcp.
curl -s https://taskbullet.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"match_intent","arguments":{"message":"I need to hire a VA for my store"}}}'