AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified ISC Self-run

Tally Mcp

mcp-learnwithcc-tally-mcp · by learnwithcc

MCP server for Tally.so - manage forms through AI with natural language commands and safety-first bulk operations

No reviews yet
0 installs
24 views
0.0% view→install

Install

$ agentstack add mcp-learnwithcc-tally-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-learnwithcc-tally-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Tally Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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? > [](https://tally.cello.so/gRzFb4pxX90) > 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:

  1. Start the local proxy:

``bash npm run proxy ``

  1. Configure Claude.ai:
  • Server URL: http://localhost:3001/mcp
  • Transport: http-stream
  • Authentication: None

🔧 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

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests
  5. Submit a pull request

📄 License

MIT License - see [LICENSE](LICENSE) file for details.


Built by Chris CameronLearnWith.cc

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.