Holaspirit MCP server

Integrates with Holaspirit's API to provide access to organizational data for tasks like structure analysis, role management, and policy review.
Back to servers
Setup instructions
Provider
Ryo Okubo
Release date
Jan 13, 2025
Language
TypeScript
Package
Stats
3.2K downloads
1 star

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.

Installation Options

Using Smithery

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

Manual Installation

Alternatively, you can install the package manually:

npm install holaspirit-mcp-server

Configuration

You'll need to configure the server with your Holaspirit credentials using one of these methods:

Environment Variables

Set these variables in your environment:

HOLASPIRIT_API_TOKEN=your_api_token_here
HOLASPIRIT_ORGANIZATION_ID=your_organization_id_here

Using a .env File

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

Running the Server

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 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).

Client Configuration

For Stdio Transport

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>"
    }
  }
}

For HTTP Transport

Configure your client to connect to:

  • http://localhost:3000/ (or any path)

Available Tools

The Holaspirit MCP server provides these tools:

  • holaspirit_list_tasks - List all tasks in the organization
  • holaspirit_list_metrics - List all metrics in the organization
  • holaspirit_list_circles - List all circles in the organization
  • holaspirit_get_circle - Get details of a specific circle
  • holaspirit_list_roles - List all roles in the organization
  • holaspirit_get_role - Get details of a specific role
  • holaspirit_list_domains - List all domains in the organization
  • holaspirit_list_policies - List all policies in the organization
  • holaspirit_list_meetings - List all meetings in the organization
  • holaspirit_get_meeting - Get details of a specific meeting
  • holaspirit_get_member_feed - Get member feed
  • holaspirit_get_tensions - Get tensions for a meeting or meetings
  • holaspirit_search_member - Search for a member by email

How to install this MCP server

For Claude Code

To 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.

For Cursor

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.

Adding an MCP server to Cursor globally

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>"
            }
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.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

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later