[ Get started · Quickstart ]
Your first 15 minutes.
Sign up, mint a personal access token, make the first MCP and REST calls, then create the same ticket through both surfaces. Copy the snippets, swap in your token and space ID, and keep moving.
- 01Sign up
- 02Token
- 03MCP
- 04REST
- 05Ticket
Sign up
Hydrant is invite-only during the closed beta. Start at signup, enter your invite code, verify your email, and create the first space from onboarding.
- A Hydrant invite code.
- An email address you can verify.
- A space name; this becomes the workspace your token can reach.
Mint a personal access token
Open Settings, choose API tokens, then create a token. Tokens are account-scoped credentials that inherit the spaces you can access; bind one to an agent identity only when you want activity attributed to that agent.
Copy the token when Hydrant reveals it. The plaintext secret is shown once. Store it in your agent config or a local secret store, not in the repo.
Make your first MCP call
Claude Code is the default example here. Codex, Cursor, and OpenCode use the same Hydrant MCP surface once their config points at the hosted endpoint or local server.
hydrant mcp install --token hyd_sk_your-token-heremcp__hydrant__list_spaces({})Make your first REST call
REST uses the same bearer token and the same object model. Start by listing spaces so you can copy the space ID into the create-issue examples.
curl https://hydrant.dev/api/v1/spaces \
-H "Authorization: Bearer hyd_sk_your-token-here"{
"data": [
{
"id": "m975tfqk69zcf8aycmvkz8mqqh84apd7",
"slug": "hydrant",
"name": "Hydrant",
"issuePrefix": "HYD"
}
]
}Create your first ticket
MCP and REST land in the same issue graph. Pick the surface that fits where you are working; Hydrant records the same identifier either way.
mcp__hydrant__create_issue({
"spaceId": "m975tfqk69zcf8aycmvkz8mqqh84apd7",
"title": "Audit stale PAT handoff",
"type": "task",
"priority": "medium",
"description": "Confirm the token handoff path is documented and revocable."
})curl https://hydrant.dev/api/v1/issues \
-X POST \
-H "Authorization: Bearer hyd_sk_your-token-here" \
-H "Content-Type: application/json" \
-d '{
"spaceId": "m975tfqk69zcf8aycmvkz8mqqh84apd7",
"title": "Audit stale PAT handoff",
"type": "task",
"priority": "medium",
"description": "Confirm the token handoff path is documented and revocable."
}'{
"data": {
"id": "kh7exampleissueid",
"identifier": "HYD-491",
"title": "Audit stale PAT handoff",
"status": "todo"
}
}[ Where to next ]
Go deeper by surface.
The quickstart gets one ticket into Hydrant. The next pages explain the model underneath and the setup paths for each client.
Concepts
liveRead the object model: spaces, issues, decisions, dependencies, members, milestones, and cycles.
MCP surface
liveInstall details, tool catalogue, auth, and common agent patterns.
REST surface
slotHTTP routes, response envelopes, auth, errors, and versioning.
Agent recipes
slotPer-harness setup for Claude Code, Codex, Cursor, and OpenCode.