Holaspirit MCP Server

by syucream

1 stars
177 downloads
Not rated
GitHub Website

About

Provides MCP-compatible access to Holaspirit's API, allowing AI assistants to interact with organizational data such as tasks, circles, roles, and meetings through a standardized interface.

Details

Author
syucream
Repository
syucream/holaspirit-mcp-server
GitHub stars
1
Downloads
177
License
MIT License
Categories
AI, Workplace, Other

Available 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

Setting up with Highlight

Follow these steps to add this server as a custom Highlight plugin:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Holaspirit MCP Server
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 holaspirit-mcp-server
    Environment
    • HOLASPIRIT_API_TOKEN <your token>
    • HOLASPIRIT_ORGANIZATION_ID <your org id>

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

The server supports two transport modes:

To install holaspirit-mcp-server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install holaspirit-mcp-server --client claude
npm install holaspirit-mcp-server

- HOLASPIRIT_API_TOKEN: Your Holaspirit API token
- HOLASPIRIT_ORGANIZATION_ID: Your Holaspirit organization ID

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)

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.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "holaspirit mcp server": {
            "env": {
                "HOLASPIRIT_API_TOKEN": "<your token>",
                "HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
            },
            "args": [
                "-y",
                "holaspirit-mcp-server"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": {
        "HOLASPIRIT_API_TOKEN": "<your token>",
        "HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
    },
    "args": [
        "-y",
        "holaspirit-mcp-server"
    ],
    "command": "npx"
}

Macos

{
    "env": {
        "HOLASPIRIT_API_TOKEN": "<your token>",
        "HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
    },
    "args": [
        "-y",
        "holaspirit-mcp-server"
    ],
    "command": "npx"
}

Windows

{
    "env": {
        "HOLASPIRIT_API_TOKEN": "<your token>",
        "HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
    },
    "args": [
        "/c",
        "npx",
        "-y",
        "holaspirit-mcp-server"
    ],
    "command": "cmd"
}

holaspirit-mcp-server

smithery badge npm version

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.

<a href="https://glama.ai/mcp/servers/7tn35lri9w">Holaspirit Server MCP server</a>

Features

Available 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

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 token
- HOLASPIRIT_ORGANIZATION_ID: Your Holaspirit organization ID

Using .env File

Create a .env file in the project root:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.