MCP Hub
Back to servers

mcp-creatio

Validation Failed

MCP server for Creatio CRM. Connect Claude Desktop, ChatGPT, and GitHub Copilot to Creatio via Model Context Protocol and OData v4.

npm123/wk
Stars
4
Updated
Mar 26, 2026
Validated
Apr 4, 2026

Validation Error:

Process exited with code 1. stderr:

Quick Install

npx -y mcp-creatio

MCP Creatio Server

npm version Docker pulls License

Model Context Protocol (MCP) server for Creatio (https://www.creatio.com/) to connect Claude Desktop, ChatGPT, GitHub Copilot, and other AI tools to Creatio data.

Also discoverable as:

  • Creatio MCP server
  • MCP server for Creatio CRM
  • Model Context Protocol for Creatio

Overview

  • Exposes Creatio data as MCP tools for MCP-compatible clients (Claude Desktop, ChatGPT Connectors, GitHub Copilot)
  • Supports reading, creating, updating, deleting records and inspecting schema
  • Execute Creatio business processes with parameters
  • Uses Creatio OData v4 API under the hood

Features

  • CRUD operations: read, create, update, delete Creatio records
  • Schema discovery: list-entities, describe-entity
  • Business processes: execute-process to run Creatio workflows
  • System settings: create-sys-setting, update-sys-setting-definition, query-sys-settings, and set-sys-settings-value to create, adjust metadata, inspect, or assign values
  • AI assistant compatibility: Claude Desktop, ChatGPT Connectors, GitHub Copilot
  • Three authentication modes: Legacy login/password, OAuth2 client credentials, OAuth2 authorization code
  • Built-in OAuth server: Automatic MCP client authentication
  • Docker ready: Multi-arch images available

Run Modes

This project supports two runtime modes:

1. CLI Mode (stdio)

Use this mode for MCP clients that launch a command directly (VS Code MCP, Claude Desktop, etc.).

  • No HTTP endpoint needed
  • Easiest local setup
  • Supports Legacy auth and OAuth2 Client Credentials
  • OAuth2 Authorization Code is not supported in stdio mode

Run directly from npm:

npx -y mcp-creatio \
  --base-url https://your-creatio.com \
  --login your_login \
  --password your_password

stdio logs are disabled by default. To enable them, set MCP_CREATIO_LOG_LEVEL or pass --log-level info.

VS Code MCP config (command-based):

{
  "creatio": {
    "command": "npx",
    "args": [
      "-y",
      "mcp-creatio",
      "--base-url",
      "https://your-creatio.com",
      "--login",
      "your_login",
      "--password",
      "your_password"
    ]
  }
}

Local repo command (without publishing):

npm run start:stdio -- --base-url https://your-creatio.com --login your_login --password your_password

2. Server Mode (http)

Use this mode when your client connects by URL (for example http://localhost:3000/mcp).

  • Exposes HTTP endpoint: /mcp
  • Required for OAuth2 Authorization Code flow
  • Works well with Docker and remote deployments

Start server:

npm start

Then connect using URL:

{
  "creatio": {
    "type": "http",
    "url": "http://localhost:3000/mcp"
  }
}

Configuration

VariableDescription
CREATIO_BASE_URLRequired. Creatio instance URL (e.g. https://your-creatio.com)
CREATIO_LOGINUsername for legacy auth
CREATIO_PASSWORDPassword for legacy auth
CREATIO_CLIENT_IDOAuth2 client credentials ID
CREATIO_CLIENT_SECRETOAuth2 client credentials secret
CREATIO_ID_BASE_URLIdentity Service URL (if separate from main Creatio instance)
CREATIO_CODE_CLIENT_IDOAuth2 authorization code client ID
CREATIO_CODE_CLIENT_SECRETOAuth2 authorization code client secret
CREATIO_CODE_REDIRECT_URIOAuth2 redirect URI (e.g. http://localhost:3000/oauth/callback)
CREATIO_CODE_SCOPEOAuth2 scope (e.g. offline_access ApplicationAccess_yourappguid)
READONLY_MODESet true to disable create/update/delete operations
MCP_CREATIO_LOG_LEVELLog verbosity: silent (default), error, warn, info

Authentication Modes

Choose one of three ways to authenticate with Creatio:

1. Legacy (Username/Password)

CREATIO_LOGIN=YourLogin
CREATIO_PASSWORD=YourPassword

2. OAuth2 Client Credentials

For server-to-server authentication. Setup guide →

CREATIO_CLIENT_ID=your_client_id
CREATIO_CLIENT_SECRET=your_client_secret

3. OAuth2 Authorization Code

For user-delegated access with web authorization. Setup guide →

CREATIO_CODE_CLIENT_ID=your_client_id
CREATIO_CODE_CLIENT_SECRET=your_client_secret
CREATIO_CODE_REDIRECT_URI=http://localhost:3000/oauth/callback
CREATIO_CODE_SCOPE="offline_access ApplicationAccess_yourappguid"

Note: Currently uses in-memory storage for OAuth tokens. Tokens will be lost on server restart.

Important: OAuth2 Authorization Code requires Server Mode (http).

Priority: Authorization Code > Client Credentials > Legacy

MCP Client Authentication (HTTP Mode)

The server includes OAuth 2.1 Authorization Server for MCP clients (Claude Desktop, etc.). No additional setup required - clients authenticate automatically through standard OAuth flow.

Examples

Node.js (Legacy Auth)

export CREATIO_BASE_URL="https://your-creatio.com"
export CREATIO_LOGIN="YourLogin"
export CREATIO_PASSWORD="YourPassword"
npm start

Docker (Legacy Auth)

docker run --rm -p 3000:3000 \
  -e CREATIO_BASE_URL="https://your-creatio.com" \
  -e CREATIO_LOGIN="YourLogin" \
  -e CREATIO_PASSWORD="YourPassword" \
  crackish/mcp-creatio

Available Tools

ToolDescription
get-current-user-infoFetches the Creatio contact details for the authenticated MCP user
list-entitiesList all available entity sets
describe-entityGet schema for entity (fields, types, keys)
readQuery records with optional filters
createCreate new record
updateUpdate existing record
deleteDelete record
execute-processRun Creatio business processes
query-sys-settingsRetrieve the current values and metadata for one or more sys settings
set-sys-settings-valueUpdate one or more sys settings via PostSysSettingsValues
create-sys-settingCreate a new sys setting record and optional initial value assignment
update-sys-setting-definitionModify sys setting metadata (name, value type, cache flags, lookup reference) via UpdateSysSettingRequest. Creatio requires Code, Name, and valueTypeName to be included on every update, even if the values are unchanged.

Note: Previously documented search/fetch helper tools (for a specific connector workflow) have been removed as they are no longer required.

Reviews

No reviews yet

Sign in to write a review