Creatio Case Toolkit MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Creatio Case Toolkit MCP Servershow all open cases assigned to John Doe"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Creatio Case Toolkit
A read-only toolkit for working with Creatio Support cases:
an MCP server that exposes Creatio's OData API to AI clients (Claude Code, Claude Desktop, โฆ), and
a local web app that lets non-technical users look up cases by clicking menus โ with descriptions, conversation timelines, inline attachments, and optional AI analysis powered by the Claude CLI.
Everything is read-only by construction: the HTTP layer only ever issues GET, there are no create/update/delete paths, and an entity allowlist + row cap keep the blast radius small. Safe to point at production.
Status: early/active. Read-only today; a gated write-back capability (draft & post case updates with human approval) is on the roadmap.
Features
๐ Read-only by design โ GET-only client, no write tools, entity allowlist,
$topclamp.๐งฐ MCP server โ
creatio_query_records,creatio_get_record,creatio_list_allowed_entities.๐ฅ๏ธ Local web app โ look up cases by owner, case number, account, or "all recent"; filter by status; choose detail depth.
๐งต Rich case detail โ HTML-stripped descriptions, merged feed + email timeline, and inline screenshots/attachments proxied from Creatio's FileService.
โจ AI analysis (optional) โ Summarize & prioritize, Common themes, Next actions, or free-text Q&A over the loaded cases; streamed live via the local Claude CLI (uses your existing Claude login โ no API key).
โ๏ธ In-app settings โ paste/refresh SSO cookies, base URL, allowlist, row cap; no VS Code required.
๐ก Live progress โ the search streams per-case progress with a percentage bar.
Related MCP server: dataverse-mcp-server
Repository layout
src/
creatioClient.ts Shared read-only OData client (auth, cookies, GET, file download)
caseLookup.ts Case-lookup query recipes (search, description, timeline, attachments)
analyze.ts Claude CLI runner for AI analysis (streaming, isolated, no tools/MCP)
server.ts Local web app: static hosting + JSON/SSE API
index.ts MCP server (thin surface over creatioClient)
test-auth.ts Standalone credential check
public/ Web app UI (vanilla HTML/CSS/JS, zero runtime deps)
start-app.bat One-click launcher for the web app (Windows)
.env.example Copy to .env and fill inQuick start
Prerequisites: Node.js 18+ (developed on Node 24).
git clone <your-repo-url> creatio-case-toolkit
cd creatio-case-toolkit
npm install
npm run build
cp .env.example .env # then edit .env (see Configuration)
npm run test-auth # confirm credentials work (โ Success)Run the web app:
npm run app # builds, starts the server, opens http://127.0.0.1:3000On Windows you can just double-click start-app.bat.
Register the MCP server in Claude Code (see MCP server for .mcp.json form):
claude mcp add creatio-readonly \
--env CREATIO_BASE_URL=https://<your-tenant>.creatio.com \
--env CREATIO_ALLOWED_ENTITIES=Case,Activity,Contact,Account,SocialMessage \
-- node ./dist/index.jsConfiguration
All settings live in .env (and, for the MCP server, in its client registration). Never commit .env โ it holds live credentials/cookies (it's git-ignored by default).
Variable | Purpose |
| Your Creatio URL, e.g. |
| Forms-auth service account (Mode 1) |
| SSO session cookies (Mode 2) |
| Comma-separated entity allowlist (e.g. |
| Max rows per query (default 50) |
| Web app port (default 3000) |
| Set |
| Model for AI analysis (e.g. |
Authentication
The client auto-selects a mode based on which vars are set.
Mode 1 โ Forms auth (recommended): a local, least-privilege, read-only Creatio service account (
CREATIO_LOGIN+CREATIO_PASSWORD). Re-authenticates automatically on expiry.Mode 2 โ Cookie auth (SSO tenants): paste a browser session's cookies (
.ASPXAUTH,BPMCSRF,BPMLOADER) from DevTools โ Application โ Cookies. Cookies expire in hours; refresh them in.envor the app's Settings tab and the next query picks them up โ no restart needed.
Verify either mode with npm run test-auth.
Web app
Lookup tab โ choose who (assignee / case number / account / all recent), which statuses, and how much detail (summary, full description, timeline, latest update, extra fields), then Search. Results stream in with a progress bar.
Attachments โ screenshots embedded in descriptions and feed posts render inline (click to enlarge); email attachments appear as thumbnails. Images are streamed through a read-only
/api/fileproxy restricted to file entities + GUID ids.Settings tab โ base URL, cookies, allowlist, row cap, plus Test connection.
The server binds to 127.0.0.1 only and the only file it ever writes is your local .env.
AI analysis
With the Claude CLI installed and logged in, the results view shows an "Analyze with AI" bar โ Summarize & prioritize, Common themes, Next actions, or a free-text question, streamed live and rendered as Markdown (copy / download as .md). Tick row checkboxes to analyze a subset; each row also has a "โจ analyze this one" button.
Enable:
npm i -g @anthropic-ai/claude-code, then runclaudeonce to sign in. Uses your Claude subscription โ no API key.Runs
claude -plocally, isolated (no tools, no MCP, empty temp cwd); only the selected cases' text is sent โ never your cookies. SetCREATIO_APP_MODEL=sonnet(orhaiku) for cheaper/faster runs.
MCP server
Tool | Description |
| Show base URL, allowlist, and row cap |
| OData query ( |
| Fetch one record by GUID |
.mcp.json form:
{
"mcpServers": {
"creatio-readonly": {
"command": "node",
"args": ["./dist/index.js"],
"env": {
"CREATIO_BASE_URL": "https://<your-tenant>.creatio.com",
"CREATIO_ALLOWED_ENTITIES": "Case,Activity,Contact,Account,SocialMessage",
"CREATIO_MAX_TOP": "50"
}
}
}
}Foreign keys like
OwnerId/AccountId/StatusIdare not filterable โ filter through navigation paths (Owner/Id,Account/Id,Status/Name). SeeCASE-QUERY-REFERENCE.mdfor the full query recipes and gotchas.
Security & data handling
Read-only: the client issues HTTP
GETonly; there is no write path to Creatio anywhere in the codebase.Local & single-user: the web app binds to
127.0.0.1, with no app-level auth by design.Secrets stay local: cookies/credentials live in
.env(git-ignored) and are masked in the UI; AI analysis receives only case text, never cookies.Bounded reach: entity allowlist +
$topclamp; the file proxy is limited to a fixed set of file entities and GUID ids.
Roadmap
โ๏ธ Write-back (Stage 3): draft case replies / status updates with AI, then post them to Creatio on explicit human approval, and verify the write succeeded. This is the planned next step and will be gated, audited, and opt-in โ the read-only default stays.
OAuth 2.0 client-credentials auth for unattended SSO use.
Pagination past the 50-row cap in the UI; attachment-count badges.
Optional
ActivityFileinline email images.
Agentic maturity: today the toolkit is Stage 2 โ Multi-Step (multi-step, multi-tool, read-only "generate but don't run"); the in-app Analyze feature is Stage 1 โ Guided Task. Write-back is what moves it into Stage 3 โ Autonomous Workflow.
Scripts
Script | Does |
| Compile TypeScript to |
| Build + start the web app |
| Start the MCP server (stdio) |
| Verify credentials without starting anything |
License
Add a license (e.g. MIT) before publishing.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikko-bautista-113580/CreatioCaseLookup'
If you have feedback or need assistance with the MCP directory API, please join our Discord server