TaScan MCP Server
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., "@TaScan MCP ServerCreate a project for the Downtown Tower site"
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.
TaScan MCP Server
AI agent integration for TaScan — the closed-loop autonomous operations protocol. Manage projects, events, tasks, workers, QR codes, templates, completion reports, and AI-powered issue resolution through Claude, GitHub Copilot, or any MCP-compatible AI client.
Task. Scan. Done.
What is TaScan?
TaScan is a zero-download task assignment and verification platform for physical-world work. Workers scan a QR code, complete tasks with photo verification, and managers get real-time completion reports — no app download, no login, no training required.
When something breaks, AI analyzes the issue, generates fix instructions, and dispatches them to the right worker — closing the loop autonomously in under 10 seconds.
Industries: live events, construction, hospitality, warehousing, property management, healthcare, aviation, FEMA disaster response, and more.
10 Provisional Patents Filed — 265 claims, ~1000+ pages of specification. USPTO Applications #63/995,189 through #64/001,286.
Related MCP server: pith
Quickest Start: Claude.ai / Claude Mobile
No install required. Add TaScan as a custom connector in Claude:
Settings > Connectors > Add custom connector
Enter:
https://app.tascan.io/mcpFirst time you use a tool, sign in with your TaScan email and password
That's it. Works on claude.ai and Claude mobile. Same sign-in experience as GitHub, Netlify, and Supabase connectors.
Installation (Claude Desktop / Claude Code)
npm install tascan-mcpOr run directly with npx:
npx tascan-mcpConfiguration
Environment Variables
Variable | Required | Description |
| Yes | Your TaScan API key (generate in Admin Portal > Team > API Keys) |
| No | API base URL (default: |
Claude Desktop
Add to your Claude Desktop config file (claude_desktop_config.json):
{
"mcpServers": {
"tascan": {
"command": "npx",
"args": ["-y", "tascan-mcp"],
"env": {
"TASCAN_API_KEY": "your-api-key-here"
}
}
}
}Claude Code
claude mcp add tascan -- npx -y tascan-mcpThen set your API key in the environment.
Remote (claude.ai / Claude Mobile)
TaScan MCP is also available as a remote server — no install, no API key needed:
https://app.tascan.io/mcpAdd as a custom connector in Claude (Settings > Connectors). When you first use a tool, you'll be redirected to sign in with your TaScan email and password — just like connecting GitHub or Netlify. OAuth 2.0 with PKCE handles everything automatically.
Tools (36)
Projects
Tool | Description | Type |
| List all projects in the organization | Read |
| Get details of a specific project | Read |
| Create a new project | Create |
| Update project name, location, status, dates | Update |
| Delete a project and all its contents | Delete |
Events (Task Lists)
Tool | Description | Type |
| List all events within a project | Read |
| Get event details including tasks | Read |
| Create a new event in a project | Create |
| Update event name, description, modes | Update |
| Delete an event and all its tasks | Delete |
Tasks
Tool | Description | Type |
| List all tasks in an event | Read |
| Get task details including completions | Read |
| Bulk-create tasks in an event | Create |
| Update task title, type, flags, order | Update |
| Delete a task and its completions | Delete |
Workers
Tool | Description | Type |
| List all workers in the organization | Read |
| Create a new worker profile | Create |
| Update worker name, phone, email | Update |
Operations
Tool | Description | Type |
| Generate a QR code for an event | Create |
| Apply a pre-built template to an event | Create |
| List available task templates | Read |
| Get completion report for an event (optional | Read |
| One task's responses across every list in a project — chronological progression series | Read |
Closed-Loop Autonomous Operations (Patent Pending)
Tool | Description | Type |
| List field-reported issues with filtering by status, category, severity | Read |
| AI classifies issue severity, identifies root cause, and scores urgency | AI |
| AI generates ranked remediation tasks with step-by-step instructions | AI |
| Full closed loop in ONE call — issue in, AI analyzes, fix dispatched, loop closes | AI |
Communications
Tool | Description | Type |
| Multi-channel delivery of instructions to workers (SMS, email, QR) | Create |
| Send task links and notifications via email | Create |
| Mark a task as completed with optional response data | Update |
AI Agent Coordination (Patent #10)
Tool | Description | Type |
| List registered AI agents in the system | Read |
| Register a new AI agent with capabilities | Create |
| Route a task to a specific AI agent for execution | Create |
Usage Examples
Example 1: Set up a construction site inspection
User: Create a construction project for the Downtown Tower site and set up a daily safety inspection with tasks for PPE check, fall protection, scaffolding inspection, and fire extinguisher check. Make all tasks safety checkpoints that require photos.
Claude will:
1. Call tascan_create_project with name "Downtown Tower" and location "123 Main St"
2. Call tascan_create_event with name "Daily Safety Inspection"
3. Call tascan_add_tasks with 4 safety checkpoint tasks requiring photos
4. Call tascan_generate_qr to create a scannable QR code for the foremanExample 2: AI-powered autonomous issue resolution
User: Check if there are any open issues on the Marriott load-in and have TaScan fix them automatically.
Claude will:
1. Call tascan_list_issues to find open issues
2. Call tascan_auto_resolve for each issue — AI analyzes root cause, generates fix tasks, and dispatches instructions to the nearest qualified worker via SMS
3. Report back with resolution status and confidence scoresExample 3: Use templates to quickly deploy an event
User: We have a warehouse receiving shipment coming in tomorrow. Set up the standard receiving checklist.
Claude will:
1. Call tascan_list_templates with category "logistics" to find available templates
2. Call tascan_create_project for the warehouse
3. Call tascan_create_event for the receiving session
4. Call tascan_apply_template with the "warehouse-receiving" template slug
5. Call tascan_generate_qr for the receiving dock crewExample 4: Analyze and triage field issues
User: We have 5 open issues on the concert setup. Analyze them all and tell me which ones are most urgent.
Claude will:
1. Call tascan_list_issues to get all open issues
2. Call tascan_analyze_issue for each one — AI classifies severity, root cause probability, and urgency score
3. Rank by urgency and recommend which to auto-resolve vs which need human attentionTask Types
Tasks support multiple response types:
Type | Description |
| Simple done/not-done (default) |
| Requires photo upload to complete |
| Free-text response |
| Numeric response |
| Date selection |
| Multiple choice selection |
Tasks can also be flagged as:
Safety checkpoints (
is_safety_checkpoint: true) — highlighted in red, cannot be skippedPhoto required (
requires_photo: true) — worker must attach a photo to complete
Getting an API Key
Log in to the TaScan Admin Portal
Navigate to Team in the sidebar
Scroll to API Keys
Click Generate API Key
Copy the key (it's only shown once)
Set it as
TASCAN_API_KEYin your environment
API keys are scoped to your organization and support rate limiting (60 requests/minute).
Troubleshooting
"Connection failed" or OAuth redirect issues
Verify you're using the correct URL:
https://app.tascan.io/mcpClear your browser cache and try reconnecting
If using Claude Desktop, restart the app after adding the connector
"Unauthorized" or 401 errors (local npm install)
Regenerate your API key in Admin Portal > Team > API Keys
Confirm
TASCAN_API_KEYis set in your environment (not just in the config file)Keys are organization-scoped — make sure you're using a key from the correct org
Tools not showing up in Claude
Disconnect and reconnect the TaScan connector
For Claude Code: run
claude mcp listto verify the server is registeredCheck that your TaScan account has an active organization (free tier is fine)
"Rate limited" errors
Default limit is 60 requests/minute per API key
Pro and Business tiers have higher limits
Batch operations (like
tascan_add_tasks) are more efficient than individual calls
Task completions not appearing
Workers must submit via the task link (QR scan or direct URL)
Photo-required tasks won't show as complete until the photo uploads
Check the event's response mode (single vs. multi-response)
Privacy Policy
TaScan collects and processes task completion data, worker information (name, phone, email), GPS coordinates (with consent), and photos uploaded during task completion. Data is stored securely in Supabase with row-level security policies. API access is authenticated and rate-limited.
For the full privacy policy, visit: https://tascan.io/faq.html
For data deletion requests or privacy inquiries, contact: Michael@TaScan.io
Support
Email: Michael@TaScan.io
Website: https://tascan.io
License
MIT License - Copyright (c) 2026 Michael Edward Love II / Love Productions LLC
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
- AlicenseAqualityCmaintenanceAn MCP server for Tendem that enables users to complete tasks using a hybrid of AI and human agents. It allows for seamless task delegation and management within MCP-compatible clients.8103MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for task management that enables AI agents to read, create, update tasks, and track work sessions, allowing agents and humans to collaborate on the same task board.27MIT
- AlicenseBqualityDmaintenanceFull-featured MCP server for Taiga project management, enabling AI agents to manage projects, epics, user stories, tasks, issues, sprints, wiki pages, memberships, and roles via Taiga API v1.100172MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to manage hierarchical tasks, track progress, handle dependencies, and coordinate work through an MCP server.5715GPL 3.0
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero 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/snowbikemike/tascan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server