conductor-mcp
Model Context Protocol server for Orkes Conductor
Documentation
Conductor mcp server
Model Context Protocol server for Conductor.
This package is used to run an MCP server that is capable of interacting with a Conductor instance. It provides tools
for the basic operations that may be needed by an MCP client for Workflow creation, execution, and analysis.
PyPi Quickstart
Install package
pip install conductor-mcpCreate a JSON config with your Conductor keys
{
"CONDUCTOR_SERVER_URL": "https://developer.orkescloud.com/api",
"CONDUCTOR_AUTH_KEY": "",
"CONDUCTOR_AUTH_SECRET": ""
}> Note: the `/api` path is required as part of the CONDUCTOR_SERVER_URL for most applications
Plug the server into an AI Agent, such as Claude or Cursor
{
"mcpServers": {
"conductor": {
"command": "conductor-mcp",
"args": [
"--config",
""
]
}
}
}You should now be able to interact with Conductor via your AI Agent.
Adding to Claude
You can find instructions for adding to Claude here.
In general, you just add the `mcpServers` config (above) to your Claude config (or create it if it doesn't exist). For
instance, on Mac it might be `~/Library/Application\ Support/Claude/claude_desktop_config.json`.
Adding to Cursor
The main Cursor instructions are here.
Go to `Cursor -> Settings -> Cursor Settings -> MCP` and select "+ Add new global MCP server".
Here you can add the exact same configuration file shown in the example for Claude (above).
You can then access the AI chat feature and explore the MCP server in the sidebar with ⌘+L (Mac) or Ctrl+L (Windows/Linux).
Example prompts
Get Flight Risk Info
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.Notify Stocks
(May require API Keys)
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 Quickstart
Clone GitHub Repo
gh repo clone conductor-oss/conductor-mcpThis project relies on `uv` https://docs.astral.sh/uv/getting-started/
Create venv
(not entirely necessary, since `uv` automatically creates and uses the virtual environment on its own when running other commands)
uv sync
source .venv/bin/activateDefine Env Vars
You can continue to use a JSON config file and the `--config` flag, or if the server is running in an environment where
you have control over the environment variables the MCP server will look for them there if a config file is not
provided.
export CONDUCTOR_SERVER_URL="YOUR_CONDUCTOR_SERVER_URL"
export CONDUCTOR_AUTH_KEY=""
export CONDUCTOR_AUTH_SECRET=""Configure Your AI Assistant
{
"mcpServers": {
"conductor": {
"command": "uv",
"args": [
"--directory",
"",
"run",
"conductor-mcp",
"--config",
""
]
}
}
}Or Run Server Directly
cd
uv run conductor-mcp --config> Note: a `local_development.py` also exists for setting env vars and will be used when the `--local_dev` flag is set.
Frequently asked questions
What is conductor-mcp?
conductor-mcp is Model Context Protocol server for Orkes Conductor
How do I install conductor-mcp?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is conductor-mcp open source?
Yes — it is hosted on GitHub at https://github.com/conductor-oss/conductor-mcp and has 12 stars.
Related MCP tools
🙌 OpenHands: Code Less, Make More for the Model Context Protocol. Enhance AI assistants with powerful integrations. Python-based implementation.
Universal memory layer for AI Agents; Announcing OpenMemory MCP - local and secure memory management. Python-based implementation.
基于大模型搭建的聊天机器人,同时支持 微信公众号、企业微信应用、飞书、钉钉 等接入,可选择ChatGPT/Claude/DeepSeek/文心一言/讯飞星火/通义千问/ Gemini/GLM-4/Kimi/LinkAI,能处理文本、语音和图片,访问操作系统和互联网,支持基于自有知识库进行定制企业智能客服。
An LLM agent that conducts deep research (local and web) on any given topic and generates a long report with citations. Built for the Model Context Protocol to
🚀 The fast, Pythonic way to build MCP servers and clients Trusted by 19900+ developers. Trusted by 19900+ developers. Trusted by 19900+ developers.
🔥 MaxKB is an open-source platform for building enterprise-grade agents. MaxKB 是强大易用的开源企业级智能体平台。 for the Model Context Protocol. Enhance AI assistants with po
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP