MCP server for connecting to CodeMie Assistants API
Project description
CodeMie Assistants MCP Server
Python server implementing Model Context Protocol (MCP) for CodeMie Assistants operations.
Features
- Chat with AI/Run CodeMie assistant
Note: The server requires authentication credentials via environment variables.
API
Tools
chat
Chat with a specific AI assistant Inputs:
message (string): Message to send to assistantconversation_id (string): Identifier of current conversation. It should be always passed if present in current communication thread.history (array, optional): Previous conversation messages in format: [{"role": "user|assistant", "message": "text"}]
Returns generated assistant response as text
Installation
Ensure you have Python 3.12 or later installed.
Important: Before running the MCP server, you must configure the required environment variables (see Environment Variables section below).
Using uv (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run codemie-mcp-assistants.
uvx codemie-mcp-assistants
Using Poetry
Alternatively you can install via Poetry:
poetry install codemie-mcp-assistants
After installation, you can run it as a script using:
poetry run codemie-mcp-assistants
Configuration
Configure for Claude.app
Add to your Claude settings:
Using uvx
Required variables:
"mcpServers": {
"codemie": {
"command": "uvx",
"args": ["codemie-mcp-assistants"],
"env": {
"CODEMIE_ASSISTANT_ID": "your-assistant-id",
"CODEMIE_USERNAME": "your-username",
"CODEMIE_PASSWORD": "your-password"
}
}
}
Optional variables (with defaults):
"env": {
"CODEMIE_API_DOMAIN": "https://codemie.lab.epam.com/code-assistant-api",
"CODEMIE_AUTH_CLIENT_ID": "codemie-sdk",
"CODEMIE_AUTH_SERVER_URL": "https://keycloak.eks-core.aws.main.edp.projects.epam.com/auth",
"CODEMIE_AUTH_REALM_NAME": "codemie-prod"
}
Using poetry installation
Required variables:
"mcpServers": {
"codemie": {
"command": "poetry",
"args": ["run", "codemie-mcp-assistants"],
"env": {
"CODEMIE_ASSISTANT_ID": "your-assistant-id",
"CODEMIE_USERNAME": "your-username",
"CODEMIE_PASSWORD": "your-password"
}
}
}
Optional variables (with defaults):
"env": {
"CODEMIE_API_DOMAIN": "https://codemie.lab.epam.com/code-assistant-api",
"CODEMIE_AUTH_CLIENT_ID": "codemie-sdk",
"CODEMIE_AUTH_SERVER_URL": "https://keycloak.eks-core.aws.main.edp.projects.epam.com/auth",
"CODEMIE_AUTH_REALM_NAME": "codemie-prod"
}
Environment Variables
Mandatory Variables
The following environment variables must be configured before running the MCP server:
Assistant Configuration:
CODEMIE_ASSISTANT_ID: Your CodeMie assistant ID (required)
Authentication (choose one method):
Option 1: Username/Password
CODEMIE_USERNAME: Your CodeMie usernameCODEMIE_PASSWORD: Your CodeMie password
Option 2: Client Credentials
CODEMIE_AUTH_CLIENT_SECRET: Auth client secret
Optional Variables (Environment-Specific)
By default, the server connects to the production environment with these settings:
CODEMIE_API_DOMAIN:https://codemie.lab.epam.com/code-assistant-apiCODEMIE_AUTH_CLIENT_ID:codemie-sdkCODEMIE_AUTH_SERVER_URL:https://keycloak.eks-core.aws.main.edp.projects.epam.com/authCODEMIE_AUTH_REALM_NAME:codemie-prod
You can override these variables to point to a different environment.
Example: Preview Environment Configuration
CODEMIE_API_DOMAIN="https://codemie-preview.lab.epam.com/code-assistant-api"
CODEMIE_AUTH_CLIENT_ID="codemie-preview-sdk"
CODEMIE_AUTH_SERVER_URL="https://keycloak.eks-core.aws.main.edp.projects.epam.com/auth"
CODEMIE_AUTH_REALM_NAME="codemie-prod"
Other Optional Variables:
CODEMIE_VERIFY_SSL: SSL verification flag (default:true)
Build
Make build:
make build
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codemie_mcp_assistants-0.1.287.tar.gz.
File metadata
- Download URL: codemie_mcp_assistants-0.1.287.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57e6e799af85057944313d9bc54c2687aece7385a699d50bfc27a1d4e0406baa
|
|
| MD5 |
b35e0093ef699b599e1e8288faa080a0
|
|
| BLAKE2b-256 |
b16a7bc68e9c0daa843c8599766871128e29d724487dfdd16997a0f5e3a9effd
|
File details
Details for the file codemie_mcp_assistants-0.1.287-py3-none-any.whl.
File metadata
- Download URL: codemie_mcp_assistants-0.1.287-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae4c79c816e7a7ee7ee5af9279e123a3c2302fca47d681be9bfccd9344129073
|
|
| MD5 |
a7a7ba98143ccb8e0417cdeba642de17
|
|
| BLAKE2b-256 |
89060f2ac7035a796f1efc724abafa1af1fe756de423e271925ac4830ff1bfa2
|