Access Holaspirit Organizational Data
An MCP server for Holaspirit - list and get circles, roles, tasks, metrics, meetings, and member tensions via 13 tools, over stdio or HTTP.
Maintainer of this project? Claim this page to edit the listing.
0.3.1Add to Favorites
Why it matters
Connect AI assistants to your Holaspirit instance to access and manage organizational data. Enables interaction with tasks, metrics, roles, and more through a standardized interface.
Outcomes
What it gets done
List and retrieve details for tasks, metrics, circles, roles, and meetings.
Search for members within the organization.
Access member feeds and meeting tensions.
Integrate with AI assistants via MCP for data interaction.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-holaspirit | bash Capabilities
Tools your agent gets
List all tasks in the organization
List all metrics in the organization
List all circles in the organization
Get details of a specific circle
List all roles in the organization
Get details of a specific role
List all domains in the organization
List all policies in the organization
Overview
Holaspirit MCP Server
An MCP server exposing 13 read tools over Holaspirit's API - circles, roles, tasks, metrics, meetings, tensions, and member search - over stdio or Streamable HTTP transport. Use when an AI assistant needs to read an organization's Holaspirit structure conversationally instead of through the Holaspirit web UI.
What it does
Gives AI assistants read access to Holaspirit's organizational data - the platform for running Holacracy and self-management structures - through 13 MCP tools: listing tasks, metrics, circles, roles, domains, policies, and meetings; getting details of a specific circle, role, or meeting; fetching a member's feed; getting tensions raised for one or more meetings; and searching for a member by email. The server supports two transport modes: stdio by default for MCP clients that talk over stdin/stdout, or an HTTP transport using the Streamable HTTP protocol, started with a port flag, which accepts POST requests on any path.
When to use - and when NOT to
Use it when an AI assistant needs to read an organization's Holaspirit structure - its circles, roles, policies, tasks, metrics, meetings, and tensions - conversationally instead of through the Holaspirit web UI. Configuration needs two values, a Holaspirit API token and an organization ID, supplied either as environment variables directly or via a .env file copied from the project's example and filled in. Installation is either automatic through Smithery for Claude Desktop, or a manual npm install, and the project also ships development scripts for hot-reloading, building, linting with ESLint and Prettier, and running example scripts, for anyone contributing rather than just consuming it.
Capabilities
Read access to an organization's full Holaspirit graph: holaspirit_list_tasks and holaspirit_list_metrics for org-wide task and metric listings, holaspirit_list_circles plus holaspirit_get_circle for circle listing and detail, holaspirit_list_roles plus holaspirit_get_role for role listing and detail, holaspirit_list_domains and holaspirit_list_policies for governance artifacts, holaspirit_list_meetings plus holaspirit_get_meeting for meeting listing and detail, holaspirit_get_member_feed for a member's activity feed, holaspirit_get_tensions for tensions raised in one or more meetings, and holaspirit_search_member for finding a member by email address.
How to install
Install automatically via Smithery for Claude Desktop, or npm install holaspirit-mcp-server manually, then set the token and organization ID and register the server for stdio transport:
{
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}
}
or run it with a --port flag and connect the client to that address for HTTP transport instead.
Who it's for
Teams running Holaspirit who want an AI assistant to answer questions about their circle structure, roles, meetings, and tensions directly, instead of navigating the Holaspirit app. The project also welcomes contributions through a standard fork-branch-lint-PR workflow, running its own lint and fix scripts (ESLint and Prettier) before a pull request is expected to pass review, alongside a dedicated development-mode script for hot-reloading changes and a separate production build/start pair reserved specifically for deployment.
Source README
holaspirit-mcp-server
A MCP(Model Context Protocol) server that accesses to Holaspirit API.
This server provides MCP-compatible access to Holaspirit's API, allowing AI assistants to interact with your Holaspirit data through a standardized interface.
Features
Available tools:
holaspirit_list_tasks- List all tasks in the organizationholaspirit_list_metrics- List all metrics in the organizationholaspirit_list_circles- List all circles in the organizationholaspirit_get_circle- Get details of a specific circleholaspirit_list_roles- List all roles in the organizationholaspirit_get_role- Get details of a specific roleholaspirit_list_domains- List all domains in the organizationholaspirit_list_policies- List all policies in the organizationholaspirit_list_meetings- List all meetings in the organizationholaspirit_get_meeting- Get details of a specific meetingholaspirit_get_member_feed- Get member feedholaspirit_get_tensions- Get tensions for a meeting or meetingsholaspirit_search_member- Search for a member by email
Quick Start
Installation
Installing via Smithery
To install holaspirit-mcp-server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install holaspirit-mcp-server --client claude
Manual Installation
npm install holaspirit-mcp-server
Configuration
You can configure the server using environment variables. Two methods are supported:
Environment Variables
HOLASPIRIT_API_TOKEN: Your Holaspirit API tokenHOLASPIRIT_ORGANIZATION_ID: Your Holaspirit organization ID
Using .env File
Create a .env file in the project root:
# Copy the example file
cp .env.example .env
Then edit .env with your actual values:
HOLASPIRIT_API_TOKEN=your_api_token_here
HOLASPIRIT_ORGANIZATION_ID=your_organization_id_here
Usage
The server supports two transport modes:
Stdio Transport (Default)
For use with MCP clients that communicate via stdin/stdout:
npx holaspirit-mcp-server
HTTP Transport
For use with web clients or HTTP-based integrations using the latest Streamable HTTP protocol:
npx holaspirit-mcp-server --port 3000
The HTTP server accepts POST requests only on any path (e.g., /, /mcp, /sse) and uses the Streamable HTTP transport protocol.
Edit MCP configuration json for your client:
For stdio transport:
...
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
},
...
For HTTP transport, configure your client to connect to:
http://localhost:3000/(or any path)
Development
Available Scripts
npm run dev- Start the server in development mode with hot reloadingnpm run build- Build the project for productionnpm run start- Start the production servernpm run lint- Run linting checks (ESLint and Prettier)npm run fix- Automatically fix linting issuesnpm run examples- Run the example scripts
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.