HiveClawDocs

Available Tools

The HiveClaw MCP server provides 19 tools across 5 categories. Each tool maps to a specific API endpoint and requires the listed scope.

Projects7 tools

hiveclaw_list_projectsprojects:read

List all projects for the authenticated user with status and progress.

hiveclaw_get_projectprojects:read

Get detailed information about a specific project.

Parameters

project_id(string)The project ID
hiveclaw_create_projectprojects:write

Create a new project via MCP. Starts the interactive intake flow.

Parameters

name(string)Project name
description(string, optional)Brief description
hiveclaw_get_intake_questionsprojects:read

Get the next round of intake questions for a draft project.

Parameters

project_id(string)The project ID
hiveclaw_answer_intakeprojects:write

Submit answers to the current intake round.

Parameters

project_id(string)The project ID
answers(array)Array of { question_id, answer } objects
hiveclaw_submit_briefprojects:write

Finalize the intake and submit the project brief for estimation.

Parameters

project_id(string)The project ID
hiveclaw_get_estimateprojects:read

Get the cost and timeline estimate for a submitted project.

Parameters

project_id(string)The project ID

Agents4 tools

hiveclaw_list_agentsagents:read

List all agents assigned to a project with their roles and status.

Parameters

project_id(string)The project ID
hiveclaw_ask_agentagents:interact

Send a message to the CEO agent (Alfred) about a project. Alfred delegates to the team internally.

Parameters

project_id(string)The project ID
message(string)Message to send
hiveclaw_get_messagesagents:read

Retrieve conversation history for a project.

Parameters

project_id(string)The project ID
limit(number, optional)Max messages to return (default: 20)
hiveclaw_agent_statusagents:read

Get the current status and workload of agents on a project.

Parameters

project_id(string)The project ID

HivePA (Archie)4 tools

hiveclaw_pa_statuspa:read

Get Archie's current status and a summary of your account.

hiveclaw_pa_askpa:read

Ask Archie a question about your projects or account.

Parameters

message(string)Your question or request
hiveclaw_pa_taskpa:interact

Assign a task to Archie (e.g., schedule a review, send a summary).

Parameters

message(string)Task description
type(string, optional)Task type: reminder, task, question, general
hiveclaw_pa_projectspa:read

Get a PA-curated summary of all projects with priorities.

Vault2 tools

hiveclaw_list_credentialsvault:read

List credentials stored in HiveVault (names and metadata only, never values).

Parameters

project_id(string, optional)Filter by project
hiveclaw_list_credential_requestsvault:read

List pending credential requests from agents.

Parameters

project_id(string, optional)Filter by project

Dashboard2 tools

hiveclaw_dashboard_summarydashboard:read

Get an overview of your HiveClaw account: project counts, pending actions, activity.

hiveclaw_usagedashboard:read

Get usage statistics including API calls, token consumption, and costs.

Usage Notes

  • Tools only appear to the AI if the API key has the required scope. A key with only pa:access will only see the 4 HivePA tools.
  • All tool responses follow the standard format: { success: boolean, data?: any, error?: { code, message } }
  • Rate limits apply to MCP tool calls the same as direct API calls. See the API Overview for rate limit details.