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:
-
list_tasks
- List all tasks in the organization -
list_metrics
- List all metrics in the organization -
list_circles
- List all circles in the organization -
get_circle
- Get details of a specific circle -
list_roles
- List all roles in the organization -
get_role
- Get details of a specific role -
list_domains
- List all domains in the organization -
list_policies
- List all policies in the organization -
list_meetings
- List all meetings in the organization -
get_meeting
- Get details of a specific meeting
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
Directly:
npx holaspirit-mcp-server
Or, run the installed module with node.
...
"lightdash": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>"
}
},
...
-
npm run dev
- Start the server in development mode with hot reloading -
npm run build
- Build the project for production -
npm run start
- Start the production server -
npm run lint
- Run linting checks (ESLint and Prettier) -
npm run fix
- Automatically fix linting issues -
npm run examples
- Run the example scripts
- Fork the repository
- Create your feature branch
- Run tests and linting:
npm run lint
- Commit your changes
- Push to the branch
- Create a Pull Request