RibbonSmith
Allows adding custom ribbon buttons in Dynamics 365 that trigger SAP integrations, such as calling JavaScript functions to send data to SAP.
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., "@RibbonSmithAdd a 'Send Email' button to the contact ribbon."
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.
RibbonSmith talks to your Dataverse environment with plain Web API calls under
your own identity. Nothing is installed in the environment; a small
unmanaged container solution (RibbonEditMCP_<entity>) is created per edited
entity to carry the customizations — the same "workspace solution" mechanism
the Ribbon Workbench used.
Why
Hand-writing RibbonDiffXml fails easily: ids, locations, template aliases and
element order must all be exactly right, and the feedback loop (import → publish
→ check) is slow. RibbonSmith closes the loop for an agent:
Grounding — read tools return the real composed ribbon (every valid location, control id, command and sequence) as compact JSON.
Declarative writes —
ribbon_add_button& friends generate schema-correct XML; the escape hatchribbon_edit_diffaccepts raw XML for advanced cases.Validation before anything touches the server — references, locations, element order, web-resource existence, unsupported-entity blocklist.
Transactional publish — validate → backup → async import → publish → verify the change is actually live by re-reading the composed ribbon.
Instant revert — every checkout and publish snapshots a restorable backup.
Related MCP server: FO Semantic MCP Server
Setup
Prerequisites: Node.js ≥ 20 and a Dataverse user with permission to create/ import solutions and publish (e.g. System Administrator / System Customizer).
npm install
npm run buildRegister with Claude Code:
claude mcp add ribbonsmith --env RIBBON_MCP_ENV_URL=https://yourorg.crm4.dynamics.com -- node <absolute-path>/ribbonsmith/dist/index.jsOr copy .mcp.json.example to your project's .mcp.json.
Authentication
On the first call that needs the network, RibbonSmith acquires a token using
the first strategy that works (override with RIBBON_MCP_AUTH):
Strategy |
| How it works |
Service principal |
| Set |
Azure CLI |
| Reuses your |
Browser SSO |
| Opens your browser for a normal Microsoft Entra sign-in (auth code + PKCE on a localhost loopback), then caches and silently refreshes tokens — the same sign-in experience as Microsoft's official Dataverse MCP local proxy. |
In auto mode (default) the order is: clientsecret (if env vars present) →
azcli (if available) → interactive. Tokens from the interactive flow are
cached in the workspace directory; delete token-cache.json to sign out.
The interactive flow uses the public client id Microsoft ships in its own
Dataverse QuickStart samples (51f81489-…), requesting the standard
user_impersonation delegated permission — so unlike the official Dataverse
MCP server's proxy, no tenant admin consent or Power Platform admin center
enablement is required. If your tenant restricts that client id, register
your own public client app (redirect URI http://localhost, Dynamics CRM
user_impersonation permission) and set RIBBON_MCP_CLIENT_ID.
The edit lifecycle
ribbon_checkout ──► edit tools (local only) ──► ribbon_preview_diff ──► ribbon_publish
│ │
└── backup (restorable) backup (pre-publish) ──────────────┘
ribbon_restore_backup ◄── revert anytimeribbon_checkout{ entity: "account" }— snapshots the current ribbon customizations (backup) and creates a local working copy of the entity'sRibbonDiffXml.Edit locally — none of these touch the environment:
ribbon_get_structure(your map of valid targets),ribbon_add_button,ribbon_hide_control,ribbon_customize_command(copy an out-of-the-box command into the diff to modify it),ribbon_edit_diff(validated raw XML),ribbon_remove_customization,ribbon_discard.ribbon_preview_diff— the exact XML that will be published + full validation report.ribbon_publish— validates, backs up, submits an async solution import, publishes, then verifies the controls are live (or hidden) in the freshly retrieved composed ribbon. Server-side imports take 1–3 minutes; if the import outlastswaitSeconds(default 120), the tool returnsstatus: "importing"— callribbon_publish_statusto complete it.ribbon_restore_backup— re-import any backup and publish: full revert.
Working files and backups live under ~/.dataverse-ribbon-mcp/<env-host>/
(override with RIBBON_MCP_WORKSPACE). Everything is a plain file; worst case,
import a backup zip manually through the maker portal.
Example: agent session
User: Add a "Send to SAP" button on the account form that calls
new_/js/sap.js: sendToSap(recordId), only for existing records.
ribbon_checkout { entity: "account" }
ribbon_get_structure { entity: "account", location: "Form" }
ribbon_add_button {
entity: "account",
id: "new_.account.SendToSap.Button",
location: "Mscrm.Form.account.MainTab.Save.Controls._children",
label: "Send to SAP",
sequence: 45,
modernImage: "ExportToExcel",
action: { type: "JavaScriptFunction", library: "new_/js/sap.js",
functionName: "sendToSap",
parameters: [{ type: "CrmParameter", value: "FirstPrimaryItemId" }] },
enableRules: [{ type: "FormStateRule", id: "new_.account.SendToSap.Existing",
state: "Existing", default: true }]
}
ribbon_preview_diff { entity: "account" }
ribbon_publish { entity: "account" }
→ { status: "published", verification: { status: "verified" }, backupId: "..." }Tool reference
Tool | Network | Purpose |
| yes | WhoAmI, checkouts, recent backups |
| yes | Begin editing; snapshot backup + local working copy |
| cached | Composed ribbon as JSON (tabs → groups → controls) |
| cached | One command's actions + rules (for reuse/customization) |
| no | Current working |
| no* | Declarative button/command/rules/labels |
| no* |
|
| no* | Copy an OOTB command into the diff |
| no* | Replace the whole working diff (validated) |
| no | Remove one element from the diff by id |
| no* | Diff XML + validation report |
| yes | Validate → backup → async import → publish → verify |
| yes | Poll/complete a pending publish or restore import |
| no | Reset working copy to last exported state |
| no | List restorable snapshots |
| yes | Re-import a snapshot + publish (revert) |
* validation may consult the cached composed ribbon and check web-resource existence over the network.
Safety model
Every
ribbon_checkoutand everyribbon_publishwrites a timestamped solution zip before any change;ribbon_restore_backupre-imports it.Publishes only ever touch the
RibbonDiffXmlnode inside a fresh export of the container solution — entity metadata is never round-tripped (the entity ships as anunmodified="1"shell).Validation blocks publishes on: malformed XML, wrong element order, missing
Mscrm.Templates, duplicate ids, unresolved command/rule/label references, missing web resources, unsupported system entities.Import failures surface the importjob's own error text; imports are transactional server-side, so a failed import changes nothing.
Status & limitations
Entity ribbons: stable. The full lifecycle (add → publish → verify → hide → publish → verify → restore → verify) is covered by a live E2E suite (
test/e2e/run-e2e.ts) plus 56 unit tests over a real composed ribbon.Application ribbon (
APPLICATION): EXPERIMENTAL. Implemented per the documented schema (component type 50, diff underImportExportXml) but not yet covered by the live E2E suite. Keep backup ids at hand.Classic
RibbonDiffXmlonly: commands built with the modern Power Apps command designer (Power Fx /appaction) are not read or written. Classic customizations render fine in Unified Interface.Flyout/Menu/group/tab creation goes through
ribbon_edit_diff(raw XML).One editor per entity at a time is assumed (shared container solution).
Development
npm test # unit tests (vitest)
npx tsc --noEmit # typecheck
npx tsx test/e2e/run-e2e.ts https://yourorg.crm4.dynamics.com
# live E2E — modifies + restores the
# 'contact' ribbon in that environment!docs/ARCHITECTURE.md — module map, data flows, why async import, testing strategy.
docs/RIBBON-CONCEPTS.md — a primer on ribbon XML (composed ribbon vs diff, locations, commands/rules, Command Checker).
Acknowledgments
RibbonSmith re-implements, as MCP tools, the declarative editing model pioneered by Scott Durow's Ribbon Workbench — for years the way humans customized Dynamics ribbons safely. This project shares no code with it; the mechanism (workspace solution → RibbonDiffXml splice → import → publish) was studied from its observable behavior and from Microsoft's public documentation of the ribbon schemas and solution APIs.
License
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
- 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/Longman006/ribbonsmith'
If you have feedback or need assistance with the MCP directory API, please join our Discord server