Workato Dev MCP
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., "@Workato Dev MCPlint recipe 12345678"
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.
Workato Dev MCP
A local, zero-dependency MCP server to author, lint, deploy, and debug Workato recipes from Claude (Code, Desktop, or any MCP client). It wraps the Workato Developer REST API, the Recipe Lifecycle Management (RLCM) package API, and the Data Tables record API.
Why not the official one? The hosted Workato Developer MCP (app.workato.com/mcp) is
management/read-only — it can't create or update recipe code or start/stop recipes. This can.
It also adds a pure-Python recipe linter, RLCM export/import, Data Table row CRUD, and AI Hub
MCP-server management.
Zero dependencies — Python 3.8+ standard library only. No
pip install, no build step.Bring your own token — each developer uses their own Workato API-client token. Nothing hosted or shared.
56 tools across recipes, linting, RLCM round-trip, connections, data/lookup tables, API Platform, and AI Hub MCP servers.
Forked from
krishnagutta/workato-dev-mcp; extends it with RLCM round-trip, Data Table CRUD, a scaffolder, AI Hub MCP management, and a pure-Python port of Workato Labs'recipe-lint(MIT). Full attribution inLICENSE.
Setup (Claude Code)
First get a Workato API-client token: Workspace admin → API clients (which privileges to grant — and how to wire Claude Desktop / other clients — are in docs/SETUP.md). Then:
git clone https://github.com/gmunro-lyft/Workato-Claude-MCP.git
cd Workato-Claude-MCP
cp .env.example .env # 1. copy the env template
# 2. edit .env → set WORKATO_TOKEN=wrkaus-…
python3 mcp/server.py --selftest # 3. confirm the server loads (no token needed)
claude # 4. launch Claude Code; approve "workato-dev" onceThen in a new session try: "list my Workato recipes" or "lint recipe 12345678".
Related MCP server: salesforce-mcp
The recipe edit loop
get_recipe(id, include_code=true) # pull the code tree (source of truth for editing)
→ edit the JSON in conversation
→ lint_recipe(recipe_id=id) # catch structural/datapill bugs BEFORE saving
→ stop_recipe(id) # running recipes can't be updated
→ update_recipe(id, code=<json>)
→ start_recipe(id) # start = the real compiler; read its validation errors
→ list_jobs / get_job # after a test run, inspect real per-step I/ORun workato_recipe_tips and get_learnings once before building — they capture the datapill
format, the trigger extended_output_schema requirement, the HTTP string-body trick, custom-code
schema gotchas, valid condition operands, and the job-log debugging pattern.
Linting
Two local, no-token tools statically analyse recipes before deploy: lint_recipe (one recipe,
by path or recipe_id) and validate_package (a whole package directory + package-level
checks). Both return structured diagnostics from a pure-Python port of recipe-lint's Tier 0/1
rules. See docs/LINTING.md for the rule table and the full 66-rule engine.
Region
Defaults to the US data center. For another region set WORKATO_API_BASE (and
WORKATO_DATA_TABLES_BASE for Data Table row tools) in .env — e.g. EU is
https://app.eu.workato.com/api. Full table in docs/SETUP.md.
Verify & test
All of these are offline, need no token, and require no install (stdlib only):
python3 mcp/server.py --selftest # the tool registry loads and is internally consistent
python3 mcp/server.py --list-tools # print every tool + a one-line description
python3 mcp/server.py --version # print the server version
python3 -m unittest discover -s tests # run the unit tests
python3 tools/gen_tools_doc.py --check # docs/TOOLS.md is in sync with the toolsThe tests also run under pytest if you prefer it.
Documentation
docs/SETUP.md — create the API client, privileges, token wiring (Code / Desktop / other), regions
docs/TOOLS.md — the full 56-tool reference (generated from the server)
docs/LINTING.md — lint rules + the upstream Go engine
CONTRIBUTING.md — add a tool, run the checks, and the allowlist-
.gitignorerule
Capturing learnings
The knowledge base grows as you use it. mcp/learnings.md is the append-only intake queue — when
Claude hits a gotcha not in workato_recipe_tips, it calls log_learning. Scrub any
workspace-specific names/IDs before committing (see CONTRIBUTING) —
the file is tracked and publishes verbatim. During review, raw learnings are promoted into
workato_recipe_tips (the curated tier). log_learning / get_learnings are pure local file
ops — no token.
Notes / limits
This is a dev tool. It can create, edit, start/stop, and delete recipes and Data Table rows. Point it at a dev/impl workspace and treat
delete_recipe/deploy_package/delete_data_table_rowwith care (they confirm intent in their descriptions).AI Hub MCP tools may be plan-gated. The
*_mcp_*tools need the API client's MCP privilege; without it Workato returns the HTML login page or 403/404. Runcheck_mcp_privilegesfirst. (A different surface from the API-Platformlist_api_*tools.)It doesn't touch the AI Hub authoring layer beyond server management. After a recipe param-set change, the consuming MCP client needs an app restart to see the new schema.
Sharing. Commit this folder to an internal git repo; teammates clone, set
WORKATO_TOKENin.env, and approve the project-scoped.mcp.jsonon first launch.
License
MIT. Builds on krishnagutta/workato-dev-mcp
and ports lint rules from recipe-lint (MIT) — see
LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceLocal MCP server that wraps the headless Claude Code CLI as MCP tools, providing stateless access to Claude's coding capabilities through prompt-based interactions. It enables users to execute Claude Code commands with various prompt formats and structured outputs directly from MCP clients.Last updated3MIT
- Alicense-qualityDmaintenanceAn MCP server that provides comprehensive access to Salesforce Tooling API for metadata management, SOQL queries, code analysis, and debugging through Claude and other AI assistants.Last updated925MIT
- Flicense-qualityCmaintenanceA local MCP server that gives Claude direct access to Workday Studio workspace. Enables reading, writing, planning, and validating integration assemblies without network calls or tenant credentials.Last updated
- Alicense-qualityBmaintenanceA Node.js MCP server that gives Claude Code direct access to file operations, database queries, PHP execution, SFTP deployment, and over 60 specialized tools for development and debugging.Last updated1MIT
Related MCP Connectors
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/gmunro-lyft/Workato-Claude-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server