by syucream
Provides MCP-compatible access to the Holaspirit API, enabling AI assistants to interact with Holaspirit data via a standardized interface.
A server that bridges the Holaspirit organization management platform with the Model Context Protocol (MCP), exposing Holaspirit's REST endpoints as MCP tools. AI assistants can call these tools to list tasks, retrieve circles, roles, meetings, policies, and more, all through a unified MCP interface.
npm install holaspirit-mcp-server
Or install on‑the‑fly with npx (preferred):
npx holaspirit-mcp-server
.env
file:
HOLASPIRIT_API_TOKEN=your_api_token
HOLASPIRIT_ORGANIZATION_ID=your_org_id
npx holaspirit-mcp-server
npx holaspirit-mcp-server --port 3000
{
"holaspirit": {
"command": "npx",
"args": ["holaspirit-mcp-server"],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}
}
holaspirit_list_tasks
holaspirit_list_metrics
npm run dev
Q: Do I need a Holaspirit account to use this server? A: Yes, you need a valid Holaspirit API token and the organization ID for the target workspace.
Q: Can I run the server behind a firewall? A: Absolutely. When using the HTTP mode, you can bind to any host/port and configure your network rules accordingly.
Q: Which transport should I choose? A: Use STDIO for local MCP clients (e.g., Claude Desktop). Choose HTTP when integrating with web services or remote agents.
Q: How do I update the server?
A: Run npm update holaspirit-mcp-server
or simply reinstall with npx holaspirit-mcp-server
to fetch the latest version.
Q: Is there support for custom Holaspirit endpoints? A: Currently the server exposes a fixed set of tools. You can fork the repository and add new tool definitions following the existing pattern.
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.
Available 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 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
You can configure the server using environment variables. Two methods are supported:
HOLASPIRIT_API_TOKEN
: Your Holaspirit API tokenHOLASPIRIT_ORGANIZATION_ID
: Your Holaspirit organization IDCreate a .env
file in the project root:
# Copy the example file
cp .env.example .env
Then edit .env
with your actual 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 use with web clients or HTTP-based integrations using the latest Streamable HTTP protocol:
npx holaspirit-mcp-server --port 3000
The HTTP server accepts POST requests only on any path (e.g., /
, /mcp
, /sse
) and uses the Streamable HTTP transport protocol.
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)npm run dev
- Start the server in development mode with hot reloadingnpm run build
- Build the project for productionnpm run start
- Start the production servernpm run lint
- Run linting checks (ESLint and Prettier)npm run fix
- Automatically fix linting issuesnpm run examples
- Run the example scriptsnpm run lint
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "holaspirit-mcp-server": { "command": "npx", "args": [ "holaspirit-mcp-server" ], "env": { "HOLASPIRIT_API_TOKEN": "<YOUR_API_TOKEN>", "HOLASPIRIT_ORGANIZATION_ID": "<YOUR_ORG_ID>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by Skyvern-AI
Automates browser‑based workflows by leveraging large language models and computer‑vision techniques, turning natural‑language prompts into fully functional web interactions without writing custom scripts.
by ahujasid
Enables Claude AI to control Blender for prompt‑assisted 3D modeling, scene creation, and manipulation via a socket‑based Model Context Protocol server.
by PipedreamHQ
Connect APIs quickly with a free, hosted integration platform that enables event‑driven automations across 1,000+ services and supports custom code in Node.js, Python, Go, or Bash.
by elie222
Organizes email inbox, drafts replies in the user's tone, tracks follow‑ups, and provides analytics to achieve inbox zero quickly.
by grab
Enables Cursor AI to read and programmatically modify Figma designs through a Model Context Protocol integration.
by ahujasid
Enables Claude AI to control Ableton Live in real time, allowing AI‑driven creation, editing, and playback of tracks, clips, instruments, and effects through a socket‑based server.
by leonardsellem
Provides tools and resources to enable AI assistants to manage and execute n8n workflows via natural language commands.
by GongRzhe
Provides a Model Context Protocol server that enables AI assistants to send, read, search, and organize Gmail messages, supporting attachments, label and filter management, and automatic OAuth2 authentication.
by mario-andreschak
A unified platform that manages AI models, MCP servers, and complex workflows, offering secure key storage, visual flow building, and an interactive chat UI.