Conductor MCP Server
Conductor mcp server
Model Context Protocol-Server für Conductor.
Dieses Paket wird verwendet, um einen MCP-Server auszuführen, der mit einer Conductor-Instanz interagieren kann. Es stellt Werkzeuge für die grundlegenden Vorgänge bereit, die ein MCP-Client für die Erstellung, Ausführung und Analyse von Workflows benötigt.
PyPi-Schnellstart
Paket installieren
pip install conductor-mcpErstellen Sie eine JSON-Konfiguration mit Ihren Conductor-Schlüsseln
{
"CONDUCTOR_SERVER_URL": "https://developer.orkescloud.com/api",
"CONDUCTOR_AUTH_KEY": "<YOUR_APPLICATION_AUTH_KEY>",
"CONDUCTOR_AUTH_SECRET": "<YOUR_APPLICATION_SECRET_KEY>"
}Hinweis: Der Pfad
/apiist für die meisten Anwendungen als Teil der CONDUCTOR_SERVER_URL erforderlich
Binden Sie den Server in einen KI-Agenten wie Claude oder Cursor ein
{
"mcpServers": {
"conductor": {
"command": "conductor-mcp",
"args": [
"--config",
"<ABSOLUTE PATH TO A JSON CONFIG FILE>"
]
}
}
}Sie sollten nun in der Lage sein, über Ihren KI-Agenten mit Conductor zu interagieren.
Hinzufügen zu Claude
Eine Anleitung zum Hinzufügen zu Claude finden Sie hier.
Im Allgemeinen fügen Sie einfach die mcpServers-Konfiguration (oben) zu Ihrer Claude-Konfiguration hinzu (oder erstellen sie, falls sie nicht existiert). Auf dem Mac könnte dies beispielsweise ~/Library/Application\ Support/Claude/claude_desktop_config.json sein.
Hinzufügen zu Cursor
Die wichtigsten Cursor-Anweisungen finden Sie hier.
Gehen Sie zu Cursor -> Einstellungen -> Cursor-Einstellungen -> MCP und wählen Sie „+ Add new global MCP server“.
Hier können Sie genau dieselbe Konfigurationsdatei hinzufügen, die im Beispiel für Claude (oben) gezeigt wird. Sie können dann auf die KI-Chatfunktion zugreifen und den MCP-Server in der Seitenleiste mit ⌘+L (Mac) oder Strg+L (Windows/Linux) erkunden.
Beispiel-Prompts
Flugrisikoinformationen abrufen
Create and execute a Conductor Workflow that calls any necessary http endpoints to gather current weather data around
Seattle and outputs the risk factors for flying a small airplane around the South Lake Union area using Visual Flight
Rules today. Only use publicly available endpoints that don't require an API key.Aktien benachrichtigen
(Kann API-Schlüssel erfordern)
Create a Conductor Workflow that runs on a daily schedule, accepts a list of email address and a stock symbol, checks
current stock prices, and sends an email to everyone on the list if they should be happy or sad today based on stock
performance. Name the workflow "NotifyStonks" and use schemaVersion 2.GitHub-Schnellstart
GitHub-Repository klonen
gh repo clone conductor-oss/conductor-mcpDieses Projekt basiert auf uv https://docs.astral.sh/uv/getting-started/
Virtuelle Umgebung erstellen
(nicht unbedingt erforderlich, da uv die virtuelle Umgebung beim Ausführen anderer Befehle automatisch erstellt und verwendet)
uv sync
source .venv/bin/activateUmgebungsvariablen definieren
Sie können weiterhin eine JSON-Konfigurationsdatei und das Flag --config verwenden. Wenn der Server jedoch in einer Umgebung läuft, in der Sie die Kontrolle über die Umgebungsvariablen haben, sucht der MCP-Server dort danach, falls keine Konfigurationsdatei bereitgestellt wird.
export CONDUCTOR_SERVER_URL="YOUR_CONDUCTOR_SERVER_URL"
export CONDUCTOR_AUTH_KEY="<YOUR_APPLICATION_AUTH_KEY>"
export CONDUCTOR_AUTH_SECRET="<YOUR_APPLICATION_SECRET_KEY>"Konfigurieren Sie Ihren KI-Assistenten
{
"mcpServers": {
"conductor": {
"command": "uv",
"args": [
"--directory",
"<ABSOLUTE_PATH_TO_THE_PROJECT>",
"run",
"conductor-mcp",
"--config",
"<ABSOLUTE PATH TO A JSON CONFIG FILE>"
]
}
}
}Oder führen Sie den Server direkt aus
cd <PROJECT_ROOT>
uv run conductor-mcp --config <ABSOLUTE PATH TO A JSON CONFIG FILE>Hinweis: Eine
local_development.pyexistiert auch zum Setzen von Umgebungsvariablen und wird verwendet, wenn das Flag--local_devgesetzt ist.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
MCP server for AI access to Swagger by SmartBear.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/saymine/conductor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server