favro-mcp
Provides tools for interacting with Favro's REST API, enabling search, name-to-ID resolution, card reading and editing, and broader workflow automation across Favro resources.
Click on "Deploy 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., "@favro-mcpShow my open tasks in the Design board"
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.
favro-mcp
A Model Context Protocol server for Favro, written in Go.
It speaks MCP over stdio and exposes Favro's REST API as 85 typed tools. Beyond
plain CRUD, it ships workflow tools built for natural-language use — search,
name→ID resolution, surgical description edits — so an LLM can act on Favro
without spending its rate-limit budget on lookup round-trips. Every mutating
tool supports dry_run.
Unofficial. Not affiliated with or endorsed by Favro.
Requirements: Go 1.27 to build from source; a Favro account with an API token. See CHANGELOG.md for release history.
Installation
Claude Desktop bundle
Each tagged release publishes a favro-mcp_<version>.mcpb on the GitHub Releases page. Opening it installs the server into Claude Desktop and prompts for the three values it needs — your Favro email, an API token, and the organization id — so there is no config file to hand-edit.
The bundle carries a macOS universal binary, a Windows amd64 binary, and both Linux architectures behind a launcher that picks at startup. It is listed in checksums.txt and covered by the release signature; see Verifying a download.
Cowork plugin (recommended)
Each tagged release publishes a single multi-arch favro-mcp.plugin zip on the GitHub Releases page. The bundle contains binaries for darwin amd64/arm64 and linux amd64/arm64, plus a launcher shim that picks the right one at runtime.
Download
favro-mcp.pluginfrom the release.Install it into your Cowork profile (drag-and-drop, or follow Cowork's plugin install flow).
Authenticate (see Authentication below).
Restart Cowork — the
favroMCP server will appear with all tools registered.
The bundled .mcp.json points at ${CLAUDE_PLUGIN_ROOT}/bin/favro-mcp so the install is relocatable; no host paths to edit.
Standalone binary
For non-Cowork hosts (Claude Code via raw .mcp.json, MCP Inspector, custom integrations):
Download the matching
favro-mcp_<version>_<os>_<arch>.tar.gz(or.zipon Windows) from the release.Extract and place the
favro-mcpbinary somewhere on$PATH(or note its absolute path).Authenticate.
Point your MCP host's config at the binary — see MCP host configuration below.
From source
git clone https://github.com/mmedum/favro-mcp
cd favro-mcp
make build # → bin/favro-mcpRequires Go 1.27, the version go.mod declares. Under the default
GOTOOLCHAIN=auto an older toolchain downloads it on demand; under
GOTOOLCHAIN=local the build fails instead of downgrading.
Related MCP server: JIRA MCP Server
Verifying a download
Every release carries checksums.txt, an SBOM per archive, a keyless cosign signature over the checksum file, and build provenance attested by GitHub. The .mcpb bundle is in checksums.txt with the archives, so one signature covers all of it.
# 1. The file is what the release says it is.
sha256sum -c checksums.txt --ignore-missing
# 2. The checksum file came from this repository's release workflow.
cosign verify-blob checksums.txt \
--bundle checksums.txt.bundle \
--certificate-identity-regexp '^https://github\.com/mmedum/favro-mcp/' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com
# 3. Which workflow, at which commit, built a given artifact.
gh attestation verify favro-mcp_<version>_<os>_<arch>.tar.gz --repo mmedum/favro-mcpBuilds are reproducible: -trimpath plus the commit's own timestamp, so rebuilding a tag gives byte-identical archives.
Authentication
The server uses Favro's HTTP Basic Auth (user email + API token), scoped to one Favro organization at startup. Tools never accept organization_id — pass it once via env var or keyring and forget about it.
API tokens are user-scoped — for team installs, generate the token from a dedicated service-style Favro user with the minimum permissions you need, not from a personal account.
Credential resolution
Two sources, checked in order; the first one that produces a complete (email, token, organization_id) triple wins:
Environment variables —
FAVRO_USER_EMAIL,FAVRO_API_TOKEN,FAVRO_ORGANIZATION_ID.OS keyring — populated once via
favro-mcp auth login(cross-platform: macOS Keychain, Windows Credential Manager, Linux Secret Service).
Three more variables change how the server runs rather than who it runs as:
Variable | Effect |
|
|
| When set to anything non-empty, skips the startup call that checks the credentials against Favro. For offline testing; the server then fails on the first real tool call instead of at startup. |
| Set to |
auth subcommands
favro-mcp auth login # interactive: masked token input, writes to keyring
favro-mcp auth status # show user/org (token never printed)
favro-mcp auth logout # delete keyring entries
favro-mcp auth which # print active credential source: env or keyring
favro-mcp doctor # check credentials, org binding and API reachability
favro-mcp doctor --show-ids # the same, unredacted, for your own screen
favro-mcp --version # print version + commit
favro-mcp --dry-run # process-wide override: forces all writes into dry-runfavro-mcp auth login is the one-shot setup for the keyring path. Re-run it to rotate the token.
favro-mcp doctor is the first thing to run when something does not work. It reports the build, which source the credentials came from, whether Favro accepts them, and whether the organization id names one the token can actually see — the failure that otherwise shows up as every tool returning not_found. Its output replaces ids and addresses with stable placeholders so it can be pasted into an issue; --show-ids prints the real values for your own screen, and says so.
MCP host configuration
After the binary or plugin is in place and credentials are stored, register the server in your MCP host config.
Default (keyring path, zero secrets in config):
{
"mcpServers": {
"favro": { "command": "/path/to/favro-mcp" }
}
}Headless / CI (env vars) — passes secrets through from the shell, never literal:
{
"mcpServers": {
"favro": {
"command": "/path/to/favro-mcp",
"env": {
"FAVRO_USER_EMAIL": "${FAVRO_USER_EMAIL}",
"FAVRO_API_TOKEN": "${FAVRO_API_TOKEN}",
"FAVRO_ORGANIZATION_ID": "${FAVRO_ORGANIZATION_ID}"
}
}
}
}The Cowork plugin ships its own .mcp.json pointing at ${CLAUDE_PLUGIN_ROOT}/bin/favro-mcp, so for that install path no manual config is needed.
Rate limits
Favro enforces tier-based rate limits per organization (Lite ~100/hr, Standard ~1000/hr, Enterprise ~10000/hr). A misbehaving agent can exhaust the quota for everyone in your org. The server caches resolution lookups (tags, users, widgets, columns) in-memory and supports force_refresh on every list/resolve tool to bust the cache when needed. List tools never auto-aggregate pages — each next_page requires an explicit follow-up call so the LLM can stop early.
Dry-run
Every mutating tool accepts dry_run: true and returns the would-be HTTP request (method, URL, body) plus a state-diff prediction without contacting Favro. Read tools never accept dry_run.
For sandboxed or pre-autonomy testing, --dry-run on the binary forces dry-run mode process-wide regardless of per-call input.
Tools
85 tools covering every Favro REST resource, plus workflow tools built for natural-language use. See docs/TOOLS.md for the full reference.
The ones worth knowing first:
Tool | What it does |
| Full-text search over card names and descriptions. Scope to a widget or collection. |
| One card with every id resolved to a name — saves 4–7 follow-up calls. |
| Turn a name into an id for tags, users, collections, widgets, columns, custom fields, groups. |
| Surgical description edits that return a unified diff. |
| Local diagnostic: version, bound org, credential source. Never contacts Favro. |
Troubleshooting
Run favro-mcp doctor first — it answers most of the rows below directly, and its output is safe to paste into an issue.
Symptom | Diagnosis & fix |
Every tool returns |
|
| Either no credentials configured, or the token was revoked / rotated. Run |
| The server is single-org by design — it needs to know which org to scope every request to before it can start. Set |
HTTP 429 / | Hit the per-org Favro rate limit. The client retries once honoring |
| List tools never auto-aggregate. Each follow-up call must include |
| You hit a Favro endpoint that doesn't exist on the documented surface — Favro returns the SPA fallback page instead of a 404. The error includes status + content-type + body-prefix so you can diagnose in one round-trip. |
A custom-field write returns 200 but the value doesn't change | Two known causes. First, the field may not be enabled on that widget — org-global custom fields still need per-widget enablement in the Favro UI, and writes to a field the widget doesn't have are accepted and ignored. Second, Favro ignores unknown body fields silently, so a wrong per-type shape looks exactly like success; |
Tool descriptions have stale data after a successful write | All cache invalidations are per-org-scoped and per-resource-type; if a write succeeds but the next read still shows old data, pass |
Linux launcher doesn't run from the plugin | The launcher is a bash script. If your shell can't exec it, point your |
Windows | The bundled |
Documentation
Every tool, its inputs and what it returns. | |
Every setting, the commands, and what happens at startup. | |
Trust boundaries, what reaches a log, and what limits what. | |
The gates, the test conventions, and how a release is cut. | |
The design, the decided constraints, the evidence log and the phase plan. | |
Reporting a vulnerability. |
Development
See docs/development.md for the gates and the test conventions, and CONTRIBUTING.md for how to get set up and open a pull request.
License
This server cannot be deployed
Maintenance
Related MCP Connectors
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Task & board management for AI agents + humans. Kanban, comments, digests via MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceWraps the Plaky project-management REST API as MCP tools for managing spaces, boards, items, comments, files, and more via natural language.22610 npm1MIT
- AlicenseNot gradedqualityDmaintenanceEnables natural language interaction with JIRA through MCP, providing 35 tools for issues, comments, transitions, projects, boards, sprints, epics, links, worklogs, versions, attachments, users, and fields.MIT
- FlicenseNot gradedqualityDmaintenanceEnables natural language interaction with Jira Cloud tickets, including listing, searching, creating, and updating issues through a set of MCP tools.-
- AlicenseAqualityDmaintenanceExposes Azure AI Foundry agents, workflows, and AI Search vector-database capabilities as MCP tools, enabling natural language interaction with agents, semantic search, and index management.102MIT