Holaspirit Mcp Server
Ein MCP-Server, der auf Holaspirit zugreift
Übersicht
Was ist der Holaspirit MCP Server?
Der Holaspirit MCP Server ist ein leistungsstarkes Tool, das den nahtlosen Zugriff auf die Holaspirit-Plattform erleichtert. Er fungiert als Middleware, die verschiedene Anwendungen und Dienste verbindet, sodass Benutzer effizient mit den Funktionen und Möglichkeiten von Holaspirit interagieren können. Dieser Server ist besonders nützlich für Entwickler, die Holaspirit in ihre bestehenden Systeme integrieren oder neue Anwendungen erstellen möchten, die die Fähigkeiten von Holaspirit nutzen.
Funktionen des Holaspirit MCP Servers
- Einfache Integration: Der Holaspirit MCP Server vereinfacht den Prozess der Verbindung zur Holaspirit-Plattform, was es Entwicklern erleichtert, deren Funktionen in ihre Anwendungen zu integrieren.
- Middleware-Funktionalität: Fungiert als Brücke zwischen verschiedenen Diensten und sorgt für eine reibungslose Kommunikation und den Austausch von Daten.
- Robuste API-Unterstützung: Bietet eine umfassende API, die es Entwicklern ermöglicht, auf verschiedene Funktionen von Holaspirit zuzugreifen und das gesamte Benutzererlebnis zu verbessern.
- Open Source: Als öffentliches Repository können Entwickler zur Entwicklung beitragen, es an ihre Bedürfnisse anpassen und von der Unterstützung der Community profitieren.
- Dokumentation und Community-Support: Kommt mit umfangreicher Dokumentation und einer aktiven Community, die es Benutzern erleichtert, Hilfe und Ressourcen zu finden.
So verwenden Sie den Holaspirit MCP Server
-
Installation: Beginnen Sie mit der Installation des Holaspirit MCP Servers über npm. Sie können dies tun, indem Sie den folgenden Befehl in Ihrem Terminal ausführen:
npm install holaspirit-mcp-server -
Konfiguration: Nach der Installation konfigurieren Sie den Server, indem Sie die erforderlichen Umgebungsvariablen und Konfigurationsdateien einrichten, um eine Verbindung zu Ihrem Holaspirit-Konto herzustellen.
-
Server starten: Starten Sie den Server mit dem Befehl:
npm start -
API zugreifen: Sobald der Server läuft, können Sie auf die API-Endpunkte zugreifen, um mit den Funktionen von Holaspirit zu interagieren. Konsultieren Sie die Dokumentation für detaillierte Informationen zu den verfügbaren Endpunkten und deren Nutzung.
-
Entwickeln Sie Ihre Anwendung: Verwenden Sie die API, um Ihre Anwendung zu erstellen und die Funktionen von Holaspirit nach Bedarf zu integrieren.
Häufig gestellte Fragen
F1: Was ist der Zweck des Holaspirit MCP Servers?
A1: Der Holaspirit MCP Server wurde entwickelt, um Entwicklern einen einfachen Zugang zu den Funktionen von Holaspirit zu ermöglichen und deren Integration in ihre Anwendungen zu erleichtern.
F2: Ist der Holaspirit MCP Server kostenlos zu nutzen?
A2: Ja, der Holaspirit MCP Server ist Open Source und kostenlos auf npm verfügbar.
F3: Wo finde ich die Dokumentation für den Holaspirit MCP Server?
A3: Die Dokumentation finden Sie auf der npm-Paketseite und im Repository.
F4: Kann ich zum Holaspirit MCP Server beitragen?
A4: Absolut! Als Open-Source-Projekt sind Beiträge willkommen. Sie können das Repository forken, Änderungen vornehmen und einen Pull-Request einreichen.
F5: Welche Technologien verwendet der Holaspirit MCP Server?
A5: Der Server ist mit Node.js erstellt, was es ihm ermöglicht, asynchrone Operationen effizient zu verarbeiten und eine robuste Umgebung für API-Interaktionen bereitzustellen.
Detail
holaspirit-mcp-server
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"><img width="380" height="200" src="https://glama.ai/mcp/servers/7tn35lri9w/badge" alt="Holaspirit Server MCP server" /></a>
Features
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 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 tokenHOLASPIRIT_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 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 scripts
Contributing
- 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
Serverkonfiguration
{
"mcpServers": {
"holaspirit-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--syucream--holaspirit-mcp-server--holaspirit-mcp-server",
"npm run start"
],
"env": {
"HOLASPIRIT_API_TOKEN": "holaspirit-api-token"
}
}
}
}