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:readList all projects for the authenticated user with status and progress.
hiveclaw_get_projectprojects:readGet detailed information about a specific project.
Parameters
project_id(string)— The project IDhiveclaw_create_projectprojects:writeCreate a new project via MCP. Starts the interactive intake flow.
Parameters
name(string)— Project namedescription(string, optional)— Brief descriptionhiveclaw_get_intake_questionsprojects:readGet the next round of intake questions for a draft project.
Parameters
project_id(string)— The project IDhiveclaw_answer_intakeprojects:writeSubmit answers to the current intake round.
Parameters
project_id(string)— The project IDanswers(array)— Array of { question_id, answer } objectshiveclaw_submit_briefprojects:writeFinalize the intake and submit the project brief for estimation.
Parameters
project_id(string)— The project IDhiveclaw_get_estimateprojects:readGet the cost and timeline estimate for a submitted project.
Parameters
project_id(string)— The project IDAgents4 tools
hiveclaw_list_agentsagents:readList all agents assigned to a project with their roles and status.
Parameters
project_id(string)— The project IDhiveclaw_ask_agentagents:interactSend a message to the CEO agent (Alfred) about a project. Alfred delegates to the team internally.
Parameters
project_id(string)— The project IDmessage(string)— Message to sendhiveclaw_get_messagesagents:readRetrieve conversation history for a project.
Parameters
project_id(string)— The project IDlimit(number, optional)— Max messages to return (default: 20)hiveclaw_agent_statusagents:readGet the current status and workload of agents on a project.
Parameters
project_id(string)— The project IDHivePA (Archie)4 tools
hiveclaw_pa_statuspa:readGet Archie's current status and a summary of your account.
hiveclaw_pa_askpa:readAsk Archie a question about your projects or account.
Parameters
message(string)— Your question or requesthiveclaw_pa_taskpa:interactAssign a task to Archie (e.g., schedule a review, send a summary).
Parameters
message(string)— Task descriptiontype(string, optional)— Task type: reminder, task, question, generalhiveclaw_pa_projectspa:readGet a PA-curated summary of all projects with priorities.
Vault2 tools
hiveclaw_list_credentialsvault:readList credentials stored in HiveVault (names and metadata only, never values).
Parameters
project_id(string, optional)— Filter by projecthiveclaw_list_credential_requestsvault:readList pending credential requests from agents.
Parameters
project_id(string, optional)— Filter by projectDashboard2 tools
hiveclaw_dashboard_summarydashboard:readGet an overview of your HiveClaw account: project counts, pending actions, activity.
hiveclaw_usagedashboard:readGet 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:accesswill 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.
