---
slug: "configfacets-mcp"
source_type: "readme"
source_url: "https://cdn.jsdelivr.net/gh/configfacets/configfacets_mcp@main/README.md"
repo: "https://github.com/configfacets/configfacets_mcp"
source_file: "README.md"
branch: "main"
---
# configfacets_mcp

Configfacets MCP Server

## Install

We recommend using [uv](https://docs.astral.sh/uv/) to manage your Python projects.

```
uv init <repository_name>
cd <repository_name>
```

Then add Configfacets MCP server to your project dependencies

```
uv add "configfacets-mcp"
```

Initialize your MCP server

coreconcepts.py

```
from configfacets.server import ConfigfacetsMCP

mcp_server = ConfigfacetsMCP(
    server="myserver"
    repository="configfacets/core-concepts",
    version="appconfigs",
    api_key="<your apikey>",
)
mcp_server.run()
```

## Build and Publish

```
uv build
uv publish
```

```
{
    "mcpServers": {
        "configfacets": {
            "command": "uv",
            "args": [
                "--directory",
                "<absolute path>/coreconcepts_mcp",
                "run",
                "coreconcepts.py"
            ]
        }
    }
}
```
