Retrieves circles from the Holaspirit organization
Retrieves roles from the Holaspirit organization
Retrieves members from the Holaspirit organization
Retrieves policies from the Holaspirit organization
Retrieves domains from the Holaspirit organization
Holaspirit API Integration provides a seamless connection between Claude and Holaspirit, a platform for organizational management based on Holacracy principles. This MCP server enables users to query and interact with organizational data, roles, circles, and other Holaspirit resources directly through Claude's interface. With this integration, users can retrieve information about their organization's structure, members, roles, and responsibilities without leaving their conversation with Claude. The server handles authentication and API communication, making it easy to access up-to-date organizational information for decision-making and collaboration.
This MCP server allows Claude to interact with your Holaspirit organization data, providing access to organizational structure, roles, circles, and more.
.node-version
)npm install holaspirit-mcp-server
.env
file in your project root with the following variables:HOLASPIRIT_API_KEY=your_api_key_here
HOLASPIRIT_ORG_ID=your_organization_id
PORT=3000 # Optional, defaults to 3000
"mcpServers": {
"holaspirit": {
"command": "npx",
"args": [
"holaspirit-mcp-server"
]
}
}
You can start the server directly with:
npx holaspirit-mcp-server
Or add it to your package.json scripts:
"scripts": {
"start-holaspirit-mcp": "holaspirit-mcp-server"
}
The server can also be run using Docker:
docker build -t holaspirit-mcp-server .
docker run -p 3000:3000 --env-file .env holaspirit-mcp-server
Once the server is running, Claude can access your Holaspirit data through the available tools. You can ask Claude to:
Example queries:
If you encounter issues:
For more detailed information, visit the Holaspirit API documentation.