1. Conduid
  2. Developer Tools
  3. Holaspirit
MCP server · Developer Tools

Holaspirit

A MCP server that accesses to Holaspirit

Unclaimed MIT last commit a year ago holaspiritaimodelcontextprotocolmcp
52Fair

Scored 2 days ago · breakdown

About Holaspirit

Holaspirit is an MCP server published by syucream in the Developer Tools category: a MCP server that accesses to Holaspirit. It has been installed 0 times through Conduid.

The repository has 1 stars and 8 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx holaspirit-mcp-server
Claude Code
claude mcp add holaspirit-mcp-server -- npx -y holaspirit-mcp-server
npx
npx -y holaspirit-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Holaspirit

Powered by Claude · Grounded in docs

I know everything about Holaspirit. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.3.1v0.3.1 · 1 Jul 2025What's Changed Fix http transport by @syucream in https://github.com/syucream/holaspirit-mcp-server/pull/14 Full Changelog**: https://github.com/syucream/holaspirit-mcp-server/compare/v0.3.0...v0.3.1
v0.3.0v0.3.0 · 17 Jun 2025What's Changed feat: upgrade version to 0.3.0 and update dependencies by @syucream in https://github.com/syucream/holaspirit-mcp-server/pull/13 Full Changelog**: https://github.com/syucream/holaspirit-mcp-server/compare/v0.2.1...v0.3.0
v0.2.1v0.2.1 · 9 Jun 2025What's Changed refactor: simplify request argument parsing and make role schema fields optional by @syucream in https://github.com/syucream/holaspirit-mcp-server/pull/12 Full Changelog**:…
v0.2.0v0.2.0 · 20 Apr 2025What's Changed Serve org id via envvar, and add some flexible tools to reduce context usage by @syucream in https://github.com/syucream/holaspirit-mcp-server/pull/9 Full Changelog**:…
v0.1.2v0.1.2 · 13 Apr 2025What's Changed Add member feed API endpoint and cleanup schema definitions by @syucream in https://github.com/syucream/holaspirit-mcp-server/pull/8 Full Changelog**: https://github.com/syucream/holaspirit-mcp-server/compare/v0.1.1...v0.1.2

README

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.

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:

# 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

Usage

The server supports two transport modes:

Stdio Transport (Default)

For use with MCP clients that communicate via stdin/stdout:

npx holaspirit-mcp-server

HTTP Transport

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.

Edit MCP configuration json for your client:

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)

Development

Available Scripts

  • 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

Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Run tests and linting: npm run lint
  4. Commit your changes
  5. Push to the branch
  6. Create a Pull Request

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About Holaspirit

How do I install Holaspirit?

Run npx holaspirit-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Holaspirit safe to use with an AI agent?

Its trust score is 52 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Holaspirit still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.