Tallyfy
OfficialTallyfy MCP Server
The official Model Context Protocol server for Tallyfy, the workflow and process automation platform. It lets any MCP-capable AI assistant run your operations: create and track tasks, launch and advance processes, read and edit templates, fill form fields, manage people and groups, and search across your organization, all through your own authenticated Tallyfy account.
This repository is an automatically published, read-only mirror. The canonical source is maintained privately by Tallyfy and a sanitized, server-only snapshot is published here on every production release. Please do not open pull requests against this mirror (they cannot be merged here). For bugs or feature requests, use the issue tracker or contact us (see Support). Hosting, deployment, and monitoring code is intentionally not part of this mirror.
Connect (hosted, recommended)
Tallyfy runs a managed remote server. You do not need to host anything. Point your MCP client at:
https://mcp.tallyfy.com/Transport is streamable HTTP and authentication is OAuth against your Tallyfy account, so the assistant only ever sees data the signed-in user is allowed to see.
{
"mcpServers": {
"tallyfy": {
"type": "streamable-http",
"url": "https://mcp.tallyfy.com/"
}
}
}Related MCP server: Tability MCP Server
What it can do
109 tools across the Tallyfy domain, grouped by area:
Area | Examples |
Tasks | create, complete, reassign, comment on, and search tasks |
Processes (runs) | launch a process from a template, advance and track steps |
Templates (checklists) | read, create, and edit templates and their steps |
Form fields | read and populate kick-off and step form fields |
Automation | inspect and manage automated actions / rules |
People & access | users, groups, guests, organization membership |
Organization | tags, folders, comments, search across the org |
API fallback | read from or write to any Tallyfy REST endpoint that has no dedicated tool |
Every tool calls the public Tallyfy API on behalf of the authenticated user. There are no write operations the signed-in user could not perform in the Tallyfy app directly.
Doing bulk or scripted work? This server is tuned for interactive, conversational use and limits how much one request can do at once. For high-volume or headless automation (launching processes from a CSV, exporting every template to disk, multi-org loops, CI/CD approval gates), reach for the first-party tallyfy CLI instead. It is built for deterministic, scriptable batch operations. Install with brew install tallyfy/tap/tallyfy or grab a binary from the releases page.
Run it yourself
You can build and run the server from this mirror with Docker. No configuration is required to start it:
cd server
docker build -t tallyfy-mcp-server .
docker run --rm -p 9000:9000 tallyfy-mcp-server
curl http://localhost:9000/health # {"status":"healthy"}The server listens on port 9000 and speaks streamable HTTP at / (and at /mcp). Python 3.13 is required if you prefer to run it without Docker (pip install -r server/requirements.txt, then uvicorn server:app from inside server/).
To configure it, copy .env.example to .env and pass it with --env-file .env. Every value in there is optional; the defaults point at Tallyfy production.
About authentication
Every MCP request needs a Tallyfy-issued OAuth 2.1 bearer token (RS256). The server verifies that signature on every call, so an unauthenticated client gets a 401 challenge and reaches no Tallyfy data. Only /health and the OAuth discovery documents are open.
The verification key is resolved for you. Left alone, the server reads Tallyfy's published JWKS at https://account.tallyfy.com/.well-known/jwks.json and picks up key rotations automatically. Set TALLYFY_PUBLIC_KEY to a PEM public key if you would rather pin it and avoid the network lookup. If neither source resolves, the server still starts, and rejects every token.
Listed on
Official MCP Registry (
com.tallyfy/mcp-server)
Security
Tools are scoped to the authenticated user, inputs are validated and the outbound API surface is allowlisted. We disclose no static credentials in this repository: all secrets are supplied at runtime via environment variables. If you find a security issue, please email security@tallyfy.com rather than opening a public issue.
Support
Product docs: https://tallyfy.com/products/pro/integrations/mcp-server/
Help / contact: https://tallyfy.com/contact/
License
Apache License 2.0 © Tallyfy, Inc.
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.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with Automatisch workflow automation platform, allowing them to create, manage, and monitor workflows, connections, and executions through natural language commands.1067MIT
- Alicense-quality-maintenanceEnables AI assistants to manage OKRs, track goals, and update progress on the Tability platform using natural language. It provides 27 tools for interacting with plans, objectives, outcomes, initiatives, and workspace memberships via the Tability API.
- AlicenseAqualityDmaintenanceConnects AI assistants to your n8n instance to manage workflows, executions, credentials, and user settings through 31 specialized tools. It enables users to perform n8n operations like workflow creation, activation, and execution history retrieval via natural language.279MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to fully control a Tracecat SOAR platform instance through natural language, managing workflows, actions, cases, secrets, tables, schedules, graphs, and more.9494MIT
Related MCP Connectors
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Connect AI to your Attio CRM. Manage contacts, companies, deals, and sales pipelines. Create tasks…
Universal AI API Orchestrator — 1,554 tools, 96 services. One install.
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/tallyfy/mcp-public'
If you have feedback or need assistance with the MCP directory API, please join our Discord server