drio
Open app

holaspirit-mcp-server

Source

A MCP server that accesses to Holaspirit

Catalog onlyCatalog onlySTDIO

Overview

holaspirit-mcp-server is a server that provides MCP (Model Context Protocol) compatible access to the Holaspirit API, enabling AI assistants to interact with Holaspirit data through a standardized interface.

To use holaspirit-mcp-server, install it via npm, configure your Holaspirit API credentials in a .env file, and start the server using the provided commands.

  • List tasks, metrics, circles, roles, domains, policies, and meetings in the organization. - Get details of specific circles, roles, and meetings. - Supports development with hot reloading and linting checks.
  1. Integrating AI assistants with Holaspirit for task management.
  2. Automating data retrieval from Holaspirit for reporting.
  3. Enhancing organizational workflows through standardized API access.

Add to your AI client

Use these steps to connect holaspirit-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "holaspirit-mcp-server-syucream": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-holaspirit-mcp-server-syucream"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "holaspirit-mcp-server-syucream": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-holaspirit-mcp-server-syucream"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "holaspirit-mcp-server-syucream": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-holaspirit-mcp-server-syucream"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "holaspirit-mcp-server-syucream": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-holaspirit-mcp-server-syucream"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "holaspirit-mcp-server-syucream": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-holaspirit-mcp-server-syucream"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "holaspirit-mcp-server-syucream": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-holaspirit-mcp-server-syucream"
      ]
    }
  }
}

FAQ

What is MCP?

MCP stands for Model Context Protocol, which standardizes how AI assistants can access and interact with data.

How do I install holaspirit-mcp-server?

You can install it using npm with the command `npm install holaspirit-mcp-server`.

Is there any example usage available?

Yes! You can find example usage in the `examples` directory after installation.