Server Details
Universal task protocol — manage projects, tasks, workers, QR codes, and reports.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- snowbikemike/tascan-mcp
- GitHub Stars
- 0
See and control every tool call
Available Tools
27 toolstascan_add_tasksInspect
Add one or more tasks to an event (task list). Supports bulk creation. IMPORTANT: Set response_type correctly — use "text" for info collection (names, phones, emails, notes), "photo" for visual verification (inspections, serial numbers, damage checks), "checkbox" only for simple confirmations.
| Name | Required | Description | Default |
|---|---|---|---|
| tasks | Yes | Array of tasks to create | |
| list_id | Yes | Task list (event) ID |
tascan_analyze_issueInspect
Step 1 of the Closed-Loop Autonomous Operations Protocol. Retrieves full issue context including worker info, message thread, project history, and recent similar issues. Use this data to reason about the root cause and generate a remediation plan. Also supports server-side AI analysis via POST (calls Anthropic API directly).
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | Issue ID to analyze | |
| server_side_ai | No | If true, the server calls Anthropic API directly for AI analysis (default: false — returns raw data for MCP client to analyze) |
tascan_apply_templateInspect
Apply a pre-built template to a task list, adding all template tasks
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID | |
| template_slug | Yes | Template slug (e.g. "conference-load-in", "warehouse-receiving") |
tascan_auto_resolveInspect
FULL Closed-Loop Autonomous Operations Protocol in one call. Server-side AI analyzes the issue, generates remediation tasks, creates a task list, and dispatches to the worker — all without human intervention. This executes Patent Claim 7: autonomous operations from issue detection through physical-world instruction delivery.
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | Issue ID to auto-resolve |
tascan_create_eventInspect
Create a new event (task list) within a project
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Event name | |
| project_id | Yes | Project ID | |
| description | No | Event description |
tascan_create_projectInspect
Create a new TaScan project (top-level container for events)
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Project name | |
| location | No | Project location / venue |
tascan_create_workerInspect
Create a new worker (taskee) in the organization
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Worker name | |
| No | |||
| phone | No | Phone number |
tascan_delete_eventInspect
Delete an event (task list) and all its tasks and completions. This action is irreversible.
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID to delete |
tascan_delete_projectInspect
Delete a project and all its events, tasks, and completions. This action is irreversible.
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID to delete |
tascan_delete_taskInspect
Delete a specific task and its completions. This action is irreversible.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Task ID to delete |
tascan_dispatch_instructionInspect
Step 3 of the Closed-Loop Autonomous Operations Protocol. Dispatches remediation to the worker via MULTI-CHANNEL delivery: (1) issue thread message, (2) in-app notification, (3) progress feed update, (4) SMS if phone on file, (5) optional remediation task list creation. Closes the loop from digital AI analysis to physical worker execution.
| Name | Required | Description | Default |
|---|---|---|---|
| ai_agent | No | Name of the AI agent dispatching (default: TaScan AI) | |
| issue_id | Yes | Issue ID this instruction relates to | |
| send_sms | No | Send SMS to worker (default: true if phone on file) | |
| worker_id | No | Target worker ID (defaults to the worker who reported the issue) | |
| instruction | Yes | Clear, actionable instruction for the worker to execute | |
| remediation_tasks | No | Optional array of tasks to create as a remediation task list. Each: { title, description, response_type, requires_photo, is_safety_checkpoint, sort_order } | |
| recommendation_summary | No | One-line summary for the task list description |
tascan_generate_qrInspect
Generate a QR code for a task list (event) that workers can scan to access tasks
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID |
tascan_get_eventInspect
Get details of a specific event (task list) including its tasks
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID |
tascan_get_projectInspect
Get details of a specific project
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID |
tascan_get_reportInspect
Get completion report for a task list (event) including task status, completions, workers, and photos
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID |
tascan_get_taskInspect
Get details of a specific task including completions
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Task ID |
tascan_list_eventsInspect
List all events (task lists) within a project
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID |
tascan_list_issuesInspect
List all issues for a task list (event). Returns open, acknowledged, and resolved issues with severity, type, and category. Use this to discover issues that need AI analysis via tascan_analyze_issue.
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID |
tascan_list_projectsInspect
List all TaScan projects in the organization
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
tascan_list_tasksInspect
List all tasks in an event (task list)
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | Task list (event) ID |
tascan_list_templatesInspect
List available task templates (built-in and saved)
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter by category (e.g. "live-events", "hospitality", "logistics") |
tascan_list_workersInspect
List all workers (taskees) in the organization
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
tascan_recommend_fixInspect
Step 2 of the Closed-Loop Autonomous Operations Protocol. Post an AI-generated recommendation to an issue thread. Accepts both a text recommendation and an optional structured_recommendation object with task definitions for auto-dispatch. The recommendation is persisted in the AI audit trail.
| Name | Required | Description | Default |
|---|---|---|---|
| ai_agent | No | Name of the AI agent posting (default: TaScan AI) | |
| issue_id | Yes | Issue ID to recommend a fix for | |
| recommendation | Yes | The AI-generated recommendation text (clear, actionable instructions) | |
| structured_recommendation | No | Optional structured recommendation with tasks for auto-dispatch. Format: { recommendation_summary, confidence_score, tasks: [{ title, description, response_type, requires_photo, is_safety_checkpoint, sort_order }], estimated_duration_minutes, required_responder_role } |
tascan_update_eventInspect
Update an event / task list (name, description, team_mode, timer_mode)
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New name | |
| list_id | Yes | Task list (event) ID | |
| team_mode | No | Team mode | |
| timer_mode | No | Timer mode | |
| description | No | New description |
tascan_update_projectInspect
Update a project (name, location, status, dates)
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New name | |
| status | No | Status | |
| end_date | No | End date (ISO) | |
| location | No | New location | |
| project_id | Yes | Project ID | |
| start_date | No | Start date (ISO) |
tascan_update_taskInspect
Update a task (title, description, response_type, flags, sort_order)
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title | |
| task_id | Yes | Task ID | |
| sort_order | No | Sort position | |
| description | No | New description | |
| response_type | No | See tascan_add_tasks for guidance. "text" for info collection, "photo" for visual proof, "checkbox" for yes/no only. | |
| requires_photo | No | Require photo | |
| is_safety_checkpoint | No | Safety-critical flag |
tascan_update_workerInspect
Update a worker profile (name, phone, email)
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New name | |
| No | New email | ||
| phone | No | New phone | |
| worker_id | Yes | Worker ID |
To claim this server, publish a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [
{
"email": "your-email@example.com"
}
]
}The email address must match the email associated with your Glama account. Once verified, the server will appear as claimed by you.
Control your server's listing on Glama, including description and metadata
Receive usage reports showing how your server is being used
Get monitoring and health status updates for your server
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.