Overview
holaspirit-mcp-server is an MCP (Model Context Protocol) server that provides MCP-compatible access to Holaspirit's API, enabling AI assistants to interact with Holaspirit data through a standardized interface. It connects to the Holaspirit API using authentication tokens and organization IDs provided via environment variables or a .env file. The server supports two transport modes: the default stdio transport for MCP clients communicating over stdin/stdout, and an HTTP transport that uses the Streamable HTTP protocol and accepts POST requests on any path. Installation can be done via npm or via the Smithery CLI for automatic setup. Configuration requires HOLASPIRIT_API_TOKEN and HOLASPIRIT_ORGANIZATION_ID. Example usage includes npx holaspirit-mcp-server for stdio or npx holaspirit-mcp-server --port 3000 for HTTP. The MCP tools exposed cover a broad range of Holaspirit data, including tasks, metrics, circles, roles, domains, policies, meetings, and member-related data. This enables listing, retrieving, and querying core organizational information through a consistent interface suitable for AI agents and automated workflows.
Features
holaspirit_list_tasks
List all tasks 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_meetings
List all meetings in the organization
holaspirit_get_meeting
Get details of a specific meeting
holaspirit_get_member_feed
Get member feed
Who Is This For?
- AI assistants:Enable AI assistants to query and interact with Holaspirit data through MCP.
- Developers:Build and integrate tools that access Holaspirit data via the MCP server.




