{"id":30106949,"url":"https://github.com/lepoco/mcp-camunda","last_synced_at":"2026-04-16T18:09:20.837Z","repository":{"id":306316062,"uuid":"1022002887","full_name":"lepoco/mcp-camunda","owner":"lepoco","description":"Tools to interact with the Camunda 7 Community Edition Engine using the Model Context Protocol (MCP). Whether you're automating workflows, querying process instances, or integrating with external systems, Camunda MCP Server is your agentic solution for seamless interaction with Camunda.","archived":false,"fork":false,"pushed_at":"2025-07-24T19:41:36.000Z","size":693,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-06T14:51:45.171Z","etag":null,"topics":["bpm","bpmn","camunda","docker","mcp","mcp-server","model-context-protocol"],"latest_commit_sha":null,"homepage":"https://lepo.co","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lepoco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/funding.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["lepoco"]}},"created_at":"2025-07-18T09:42:32.000Z","updated_at":"2025-08-06T06:13:55.000Z","dependencies_parsed_at":"2025-07-29T04:30:21.546Z","dependency_job_id":null,"html_url":"https://github.com/lepoco/mcp-camunda","commit_stats":null,"previous_names":["lepoco/mcp-camunda"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lepoco/mcp-camunda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lepoco%2Fmcp-camunda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lepoco%2Fmcp-camunda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lepoco%2Fmcp-camunda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lepoco%2Fmcp-camunda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lepoco","download_url":"https://codeload.github.com/lepoco/mcp-camunda/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lepoco%2Fmcp-camunda/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269663321,"owners_count":24455796,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bpm","bpmn","camunda","docker","mcp","mcp-server","model-context-protocol"],"created_at":"2025-08-10T01:31:07.043Z","updated_at":"2026-04-16T18:09:15.814Z","avatar_url":"https://github.com/lepoco.png","language":"C#","funding_links":["https://github.com/sponsors/lepoco"],"categories":[],"sub_categories":[],"readme":"# 🔄 Camunda MCP Server\n\n_Your Agentic Gateway to Camunda BPM._\n\n[Created with ❤ in Poland by lepo.co](https://lepo.co/) and [the awesome open-source community](https://github.com/lepoco/mcp-camunda/graphs/contributors).  \nThis repository provides a powerful set of tools to interact with the Camunda 7 Community Edition Engine using the Model Context Protocol (MCP). Whether you're automating workflows, querying process instances, or integrating with external systems, Camunda MCP Server is your agentic solution for seamless interaction with Camunda.\n\n### 🛠️ Available Server Tools\n\n| Tool               | Description                                                 |\n| ------------------ | ----------------------------------------------------------- |\n| `list_definitions` | List deployed Camunda definitions.                          |\n| `list_instances`   | List active instances of selected Camunda process.          |\n| `count_instances`  | Count active instances of selected Camunda process.         |\n| `list_variables`   | List variables of the selected Camunda process.             |\n| `count_variables`  | Count variables of the selected Camunda process.            |\n| `list_incidents`   | Lists variables of the selected Camunda process.            |\n| `count_incidents`  | Count variables of the selected Camunda process.            |\n| `list_user_tasks`  | Lists user tasks of the selected Camunda process.           |\n| `count_user_tasks` | Count user tasks of the selected Camunda process.           |\n| `resolve_incident` | Requests the Camunda process engine to resolve an incident. |\n\n### 🐳 Run the server with Docker\n\nBuild the image:\n\n```bash\ndocker buildx build ./ -t mcp/camunda --no-cache\n# or\ndotnet publish ./src/Camunda.Mcp/Camunda.Mcp.csproj -c Release /t:PublishContainer\n```\n\nRun the container:\n\n```bash\ndocker run -d -i --rm --name mcp-camunda mcp/camunda\n# or for HTTP mode:\ndocker run -d --name mcp-camunda mcp/camunda -e MODE=Http -e CAMUNDA_HOST=http://host.docker.internal:8080/ -p 64623:8080\n```\n\nExample MCP config (`.mcp.json`):\n\n```json\n{\n  \"servers\": {\n    \"camunda\": {\n      \"type\": \"stdio\",\n      \"command\": \"docker\",\n      \"args\": [\n        \"run\",\n        \"-i\",\n        \"--rm\",\n        \"mcp/camunda\",\n        \"-e\",\n        \"CAMUNDA_HOST=http://host.docker.internal:8080/engine-rest/\"\n      ]\n    }\n  },\n  \"inputs\": []\n}\n```\n\n## Code of Conduct\n\nThis project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.\n\n## License\n\nCammunda is a registered trademark of [Camunda Services GmbH Zossener Strasse 55-58, 10961 Berlin, Germany](https://camunda.com/).\n\nIt's used in this project as an information that the tools provided here are compatible with Camunda 7 Community Edition Engine, which is an open-source project licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).\n\n\u003chttps://github.com/camunda/camunda-bpm-platform\u003e\n\n**Camunda MCP Server** is free and open source software licensed under **MIT License**. You can use it in private and commercial projects.  \nKeep in mind that you must include a copy of the license in your project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flepoco%2Fmcp-camunda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flepoco%2Fmcp-camunda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flepoco%2Fmcp-camunda/lists"}