Tally MCP Server
Provides AI assistants with secure access to Tally form management capabilities.
Tally MCP Server
A Model Context Protocol (MCP) server that provides AI assistants with secure access to Tally.so form management capabilities.
New to Tally?
Use the badge above to save 50% for 3 months.
I'll earn a small commission (at no extra cost to you) which helps fund ongoing maintenance of this openβsource project.
About
Tally MCP Server brings the power of Tally.so form management directly into your AI workflow. Instead of context-switching between your AI assistant and Tally's web interface, simply describe what you need in natural language and let the AI handle all the API interactions.
Why This Exists
Form creation and management shouldn't break your flow. Whether you're a developer creating test forms, a content creator building registration pages, or anyone who finds themselves constantly jumping between tools, this MCP server keeps you in the conversation.
Key Features
π― Natural Language Form Management
- Create forms by describing what you need: "Build a client intake form with name, email, and project details"
- Update existing forms without opening the Tally interface
- Clone successful forms as templates for future use
π‘οΈ Safety-First Bulk Operations
- Delete multiple forms using pattern matching ("all forms starting with 'E2E Test'")
- Mandatory preview β confirm β execute workflow prevents accidents
- Granular exclusion controls ("delete all test forms except these 3 templates")
π Complete Form Lifecycle
- Real-time response analytics and completion rates
- Export submissions to CSV/JSON
- Team management and permission controls
- Workspace organization tools
β‘ Developer Experience
- Built in TypeScript with full type safety
- Deployed on Cloudflare Workers for global speed
- 90% test coverage
- Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client
Perfect For
- Developers who create lots of test forms and need easy cleanup
- Content creators building registration forms for workshops and events
- Teams managing multiple form projects across workspaces
- Anyone tired of clicking through form builders when they could just describe what they want
Transform form management from a context-breaking chore into a seamless part of your AI-powered workflow.
π Quick Start
Step 0 β Create a discounted Tally account (optional)
If you don't already have a Tally account, grab the 50% builder's discount before continuing. You'll support this repo while saving moneyβwinβwin!
Option 1: Claude.ai Integration (Recommended)
Use the battle-tested mcp-remote package:
Claude Desktop Configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"tally-remote": {
"command": "npx",
"args": [
"mcp-remote",
"https://tally-mcp.focuslab.workers.dev/mcp",
"--header",
"Authorization: Bearer YOUR_AUTH_TOKEN"
]
}
}
}
Replace YOUR_AUTH_TOKEN with your personal server authentication token.
Option 2: Direct Integration (Cursor, etc.)
For clients that support custom headers:
{
"mcpServers": {
"tally": {
"url": "https://tally-mcp.focuslab.workers.dev/mcp",
"transport": "http-stream",
"headers": {
"Authorization": "Bearer YOUR_AUTH_TOKEN"
}
}
}
}
Option 3: Local Proxy (Alternative)
If you prefer a custom solution:
-
Start the local proxy:
npm run proxy -
Configure Claude.ai:
- Server URL:
http://localhost:3001/mcp - Transport:
http-stream - Authentication: None
- Server URL:
π§ Configuration
The server uses your personal authentication token to securely access your Tally data.
Required Environment Variables:
TALLY_API_KEY: Your Tally API key (configured in Cloudflare Workers)AUTH_TOKEN: Server authentication token (configured in Cloudflare Workers)
π‘οΈ Security
- β Server-level authentication: Only authorized users can access your data
- β Secure bridge: mcp-remote handles authentication transparently
- β Encrypted transport: All communications use HTTPS
- β Token-based auth: Industry standard Bearer token approach
π οΈ Available Tools
- create_form: Create new Tally forms with custom fields
- modify_form: Update existing form configurations
- get_form: Retrieve detailed form information
- list_forms: Browse all your forms
- delete_form: Remove forms you no longer need
- get_submissions: Access form submission data
- analyze_submissions: Get insights from form responses
- share_form: Generate sharing links and embed codes
- manage_workspace: Handle workspace settings
- manage_team: Team member and permission management
π± Multi-Client Support
Supported MCP Clients:
- β Claude.ai (via mcp-remote)
- β Cursor (direct authenticated or via mcp-remote)
- β Windsurf (via mcp-remote)
- β Any MCP client supporting HTTP Stream transport
π Development
Local Development
npm install
npm run dev
Testing
npm test
npm run test:coverage
Continuous Integration
In your CI (e.g., GitHub Actions), run:
npm ci
npm run test:coverage
Jest enforces a >90% coverage threshold via jest.config.js, causing the build to fail if coverage is below this level.
Deployment
npm run build:worker
npx wrangler deploy
π Documentation
- MCP Protocol: Model Context Protocol
- Tally API: Tally Developer Documentation
- Cloudflare Workers: Workers Documentation
- mcp-remote: NPM Package
π€ Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Submit a pull request
π License
MIT License - see LICENSE file for details.
Built by Chris Cameron β’ LearnWith.cc
Related Servers
Kone.vc
sponsorMonetize your AI agent with contextual product recommendations
Counsel
Multi LLM Council for deep counsel on your topic or idea
Apple Reminders
A server for native integration with Apple Reminders on macOS.
NAVI Protocol MCP
Interact with NAVI DeFi protocol on Sui blockchain for market data and transactions.
Notebooklm mcp server
Let your AI agents chat directly with Google NotebookLM for zero-hallucination answers.
remi
Apple Reminders CLI and MCP server with section support and iCloud sync - the only tool that can create, manage, and sync sections across devices
Clanki - Claude's Anki Integration
Enables AI assistants to interact with Anki flashcard decks via the AnkiConnect plugin.
waitlister-mcp
MCP server for the Waitlister API. Manage your waitlist subscribers, track signups, and log views through AI assistants like Claude, Cursor, and Windsurf.
Eloa - AI Content Curator
All your RSS feeds aggregated in one place. Eloa highlights what's new, shows the source, and how long ago it was published. Filter by read and unread.
Microsoft Word
Create, read, and manipulate Microsoft Word documents.
MCP Conductor
An advanced MCP server for intelligent conversation context management and session continuity, requiring the Claude Desktop application and a Node.js environment.