The Holaspirit MCP server provides MCP-compatible access to Holaspirit's API, allowing AI assistants to interact with your Holaspirit organizational data through a standardized interface. It offers a collection of tools for accessing tasks, metrics, circles, roles, and other organizational elements.
The easiest way to install the Holaspirit MCP server for Claude Desktop is via Smithery:
npx -y @smithery/cli install holaspirit-mcp-server --client claude
Alternatively, you can install the package manually:
npm install holaspirit-mcp-server
You'll need to configure the server with your Holaspirit credentials using one of these methods:
Set these variables in your environment:
HOLASPIRIT_API_TOKEN=your_api_token_here
HOLASPIRIT_ORGANIZATION_ID=your_organization_id_here
Create a .env
file in your project root:
# First copy the example file
cp .env.example .env
# Then edit .env with your values
HOLASPIRIT_API_TOKEN=your_api_token_here
HOLASPIRIT_ORGANIZATION_ID=your_organization_id_here
The server supports two transport modes:
For use with MCP clients that communicate via stdin/stdout:
npx holaspirit-mcp-server
For web clients or HTTP-based integrations:
npx holaspirit-mcp-server --port 3000
This starts an HTTP server that accepts POST requests on any path (e.g., /
, /mcp
, /sse
).
Edit your MCP configuration JSON:
{
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}
}
Configure your client to connect to:
http://localhost:3000/
(or any path)The Holaspirit MCP server provides these 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 emailTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "holaspirit" '{"command":"npx","args":["-y","holaspirit-mcp-server"],"env":{"HOLASPIRIT_API_TOKEN":"<your token>","HOLASPIRIT_ORGANIZATION_ID":"<your org id>"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect