crossplane-mcp-server - WIP

by cychiang

448 downloads
Not rated
GitHub

About

crossplane-mcp-server is a Python server that implements the Model Context Protocol (MCP) for Crossplane. It allows an LLM to talk to Kubernetes and query Crossplane-related resources such as CompositeResourceDefinition (XRD), Composition, and ManagedResource (MR).

Details

Author
cychiang
Downloads
448
Categories
Other

- List Compositions
- Get a specific Composition
- List CompositeResourceDefinitions
- Get a specific CompositeResourceDefinition
- Uses stdio transport via uv and Python
- Works with VS Code and Claude Desktop

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name crossplane-mcp-server - WIP
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure it as an MCP server in VS Code by adding the provided JSON block to mcp.json, or in Claude Desktop by adding it to claude_desktop_config.json. In both cases the server is started with uv running src/server.py.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "crossplane-mcp-server - wip": {
            "crossplane-mcp-server": {
                "command": "uv",
                "args": [
                    "--directory",
                    "${PATH_TO_CROSSPLANE_MCP_SERVER}/crossplane-mcp-server",
                    "run",
                    "src/server.py"
                ]
            }
        }
    }
}

McpServers

{
    "crossplane-mcp-server": {
        "command": "uv",
        "args": [
            "--directory",
            "${PATH_TO_CROSSPLANE_MCP_SERVER}/crossplane-mcp-server",
            "run",
            "src/server.py"
        ]
    }
}

crossplane-mcp-server - WIP

A Python server that implements Model Context Protocol(MCP) for Crossplane. It allows LLM to talk to Kubernetes and query Crossplane-related resources, such as, CompositeResourceDefinition(XRD), Composition, and ManagedResource(MR).

Usage

Using Crossplane MCP Server in vscode, add the following to mcp.json under workspace folder.

{
"inputs": [],
"servers": {
"CrossplaneServer": {
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"${PATH_TO_CROSSPLANE_MCP_SERVER}/crossplane-mcp-server",
"run",
"src/server.py"
]
}
}
}

Using Crossplane MCP Server in Claude Desktop, add the following to claude_desktop_config.json.

{
"mcpServers": {
"crossplane-mcp-server": {
"command": "uv",
"args": [
"--directory",
"${PATH_TO_CROSSPLANE_MCP_SERVER}/crossplane-mcp-server",
"run",
"src/server.py"
]
}
}
}

Support tools

[ ] List Compositions
[ ] Get Composition
[ ] List CompositeResourceDefinitions
[ ] Get CompositeResourceDefinition
[ ] ...TBC

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.