MCP server
Connect any MCP-aware client to https://getfrostbyte.dev/mcp. Hosted, 16 tools, no credit cost, no local process.
Frostbyte runs a hosted MCP (Model Context Protocol) server at https://getfrostbyte.dev/mcp. Any MCP-aware client, Claude Code, Codex, Cursor, your own tooling, connects with a bearer token and starts reading or writing project data straight away.
MCP access is universal. Free tier gets it. Every paid tier gets it. No credit cost.
Connecting
The endpoint is POST https://getfrostbyte.dev/mcp with Authorization: Bearer <your-api-token>. There's no local process to run, no daemon to manage, no port to expose. Your client connects directly to our server over HTTPS.
For most users, the easiest path is the Plugin, which handles install and token entry. If you're integrating from custom code, see the example below.
What the tools do
The server exposes 16 tools across the major Frostbyte concepts. Categorised:
Discovery
list_projects, projects you have access to.list_areas,list_releases,list_tasks, within a project.read_active_release, the current active release with its open tasks.
Reading
get_project,get_task,get_release,get_area.get_activity, recent activity entries.dashboard_snapshot, one-call summary for an agent that's just connected.
Writing
create_project,create_task,create_area,create_release.update_task, properties + status.task_complete,task_start,task_log_decision,task_spawn_subtasks,task_add_blocker.delete_task.
Feedback
feedback_list_unresolved,feedback_accept_submission,feedback_decline_submission,feedback_hub_get,feedback_hub_enable,feedback_hub_disable,feedback_hub_update_settings,get_feedback_submission.
Sessions
session_end, emit a wrap-up summary.
The exact list and shape can be enumerated by your client via MCP's standard tools/list request.
Auth
Authentication uses a Bearer token in the Authorization header. The token is hashed (SHA-256) at rest in our DB; the plain token is shown to you once at generation time and never stored. Revoking the token from settings is immediate, no propagation delay.
See API tokens for generation, rotation, and revocation.
What MCP doesn't do
- It doesn't transmit your codebase. MCP only sees Frostbyte data (tasks, areas, releases, projects, activity, feedback).
- It doesn't bypass plan limits. Creating tasks via MCP counts against the same active-task cap as the UI.
- It doesn't consume AI credits. MCP is plain database access, no LLM is invoked on Frostbyte's side. See AI overview.
Example client request
Most users won't write raw MCP requests, your client handles it. For reference, a tools/call looks like:
POST /mcp HTTP/1.1
Host: getfrostbyte.dev
Authorization: Bearer <your-token>
Content-Type: application/json
{
"method": "tools/call",
"params": { "name": "list_tasks", "arguments": { "projectId": "..." } }
}
What's next
- Generate the token: API tokens.
- For the easy install path on supported clients: Plugin.