BeClaude

camel-mcp

New
6.2kCommunity RegistryGeneralby Apache Camel

Apache Camel MCP server: exposes the Camel Catalog plus specialized tools (catalog exploration, route and YAML DSL validation, security hardening, error diagnosis, dependency check, OpenAPI contract-first scaffolding, and version-to-version migration) to AI coding assistants over the Model Context Protocol. Requires JBang on the PATH.

First seen 6/9/2026

Overview

![Maven Central](https://central.sonatype.com/artifact/org.apache.camel/apache-camel) ![Javadocs](https://www.javadoc.io/doc/org.apache.camel/camel-api) ![Stack Overflow](http://stackoverflow.com/questions/tagged/apache-camel) ![Chat](https://camel.zulipchat.com/) ![Twitter](https://twitter.com/ApacheCamel)

Apache Camel is an open source integration framework with 350+ connectors for databases, APIs, message brokers, and cloud services. Write routes in Java, YAML, or XML. Run on Spring Boot, Quarkus, or standalone with the Camel CLI. In production since 2007 — used by thousands of companies worldwide. Apache License 2.0.

Get started in seconds

bash
camel init hello.yaml
camel run hello.yaml

Or add to your existing Spring Boot project:

xml
<dependency>
    <groupId>org.apache.camel.springboot</groupId>
    <artifactId>camel-spring-boot-starter</artifactId>
</dependency>

Write it your way

The same route in YAML, Java, or XML — pick what fits your team:

YAML:

yaml
- route:
    from:
      uri: kafka:incoming-orders
      steps:
        - unmarshal:
            json: {}
        - to:
            uri: sql:INSERT INTO orders(id, data) VALUES(:#${header.id}, :#${body})

Java:

java
from("kafka:incoming-orders")
    .unmarshal().json()
    .to("sql:INSERT INTO orders(id, data) VALUES(:#${header.id}, :#${body})");

Runtimes

RuntimeWhat it does
[Camel Spring Boot](https://camel.apache.org/camel-spring-boot/latest/)Camel on Spring Boot with starters for 350+ connectors
[Camel Quarkus](https://camel.apache.org/camel-quarkus/latest/)Cloud-native Camel with fast startup, low memory, native compilation
[Camel CLI](https://camel.apache.org/manual/camel-jbang.html)Run, develop, test, and trace routes from the command line

Other runtimes: Camel K (Kubernetes), Camel Karaf (OSGi), Camel Kafka Connector (Kafka Connect)

Components

350+ connectors for connecting to anything — Kafka, REST, JDBC, AWS, Azure, GCP, Salesforce, and more:

AI integration

Apache Camel provides an MCP server (Model Context Protocol) for AI coding assistants — Claude Code, GitHub Copilot, Cursor, and Gemini CLI get full Camel catalog context. Camel also includes components for LangChain4j and OpenAI, and supports the A2A agent-to-agent protocol for connecting AI agents to enterprise systems.

Visual designers

  • Kaoto — open source visual designer for Camel routes, drag-and-drop, no code required
  • Karavan — visual designer for Camel integrations in VS Code and standalone

Examples

Contributing

We welcome all kinds of contributions:

<https://github.com/apache/camel/blob/main/CONTRIBUTING.md>

Community

  • User Stories: <https://camel.apache.org/community/user-stories/>
  • Website: <https://camel.apache.org/>
  • Issue tracker: <https://issues.apache.org/jira/projects/CAMEL>
  • Mailing list: <https://camel.apache.org/community/mailing-list/>
  • Chat: <https://camel.zulipchat.com/>
  • Stack Overflow: <https://stackoverflow.com/questions/tagged/apache-camel>

Licensing

Apache License 2.0 — see LICENSE.txt.

Install & Usage

1
Open your MCP config
~/.claude.json
2
Add the server config

Add the configuration to "mcpServers": { "camel-mcp": { "command": "...", "args": [] } }

3
Restart Claude Code
/mcp
View source on GitHub
securityapimcp

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is camel-mcp?

Apache Camel MCP server: exposes the Camel Catalog plus specialized tools (catalog exploration, route and YAML DSL validation, security hardening, error diagnosis, dependency check, OpenAPI contract-first scaffolding, and version-to-version migration) to AI coding assistants over the Model Context Protocol. Requires JBang on the PATH.

How to install camel-mcp?

To install camel-mcp: open your mcp config (~/.claude.json), then add the config to "mcpServers": { "camel-mcp": { "command": "...", "args": [] } }. Finally, /mcp in Claude Code.

What is camel-mcp best for?

camel-mcp is a mcp categorized under General. It is designed for: security, api, mcp. Created by Apache Camel.