Skip to main content
Glama
pj2horn

Motion MCP Server

by pj2horn

9-8-2026 12:36PM NPM Version License

Motion MCP Server

Motion is an AI-powered calendar and task management app that auto-schedules your work. This MCP server bridges Motion's API with LLMs like Claude and ChatGPT via the Model Context Protocol, so you can manage tasks, search projects, check your schedule, and more — all through natural conversation. It works on desktop, web, and mobile.

Preview

Click the image above to view full size

Related MCP server: Motion MCP Server

Getting Started

Prerequisites: Node.js 20+ and a Motion API key.

Local Setup (npx)

For desktop MCP clients — Claude Desktop, Claude Code, Cursor, and similar.

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "motion": {
      "command": "npx",
      "args": ["motionmcp"],
      "env": {
        "MOTION_API_KEY": "your_api_key"
      }
    }
  }
}

Test from the command line:

MOTION_API_KEY=your_api_key npx motionmcp

Tip: npx always runs the latest published version — no install needed.

Remote Setup (Cloudflare Workers)

For mobile and web clients — Claude mobile/web, ChatGPT mobile/web, or any HTTP MCP client.

One-click deploy

Deploy to Cloudflare Workers

After deploy, set your secrets in the Cloudflare dashboard (Workers > your worker > Settings > Variables):

  • MOTION_API_KEY — your Motion API key

  • MOTION_MCP_SECRET — a random string (generate with openssl rand -hex 16)

Manual deploy

# Set secrets
npx wrangler secret put MOTION_API_KEY
npx wrangler secret put MOTION_MCP_SECRET   # use: openssl rand -hex 16

# Deploy
npm run worker:deploy

Your MCP URL will be:

https://motion-mcp-server.YOUR_SUBDOMAIN.workers.dev/mcp/YOUR_SECRET

Use exactly that address. The secret goes at the end of the path and nothing follows it: the server advertises its own sub-paths (such as the message endpoint) during a session, so do not append /sse or any other sub-path to the secret.

Connecting from Claude

  1. Go to claude.ai > Settings > Connectors

  2. Add your MCP URL

  3. The server syncs automatically to the Claude mobile app

Connecting from ChatGPT

  1. Go to ChatGPT Settings > Connectors

  2. Add your MCP URL

Security: The secret in the URL prevents casual discovery. Treat the full URL like a password — don't share it publicly.

Tool configuration works the same as the local server. Set MOTION_MCP_TOOLS in wrangler.toml under [vars], or override via wrangler secret put MOTION_MCP_TOOLS.

For local Worker development, see DEVELOPER.md.

API Key

The server reads your Motion API key from the MOTION_API_KEY environment variable.

Inline (npx):

MOTION_API_KEY=your-key npx motionmcp

.env file (when running from source via npm):

MOTION_API_KEY=your-key

When using npx, prefer the inline environment variable since npx won't read a local .env file.

Tool Configuration

All 10 tools are enabled by default. If you run multiple MCP servers and want to reduce tool selection noise, you can limit which tools are exposed via the MOTION_MCP_TOOLS environment variable:

Level

Tools

Description

minimal

3

Tasks, projects, workspaces only

essential

8

Adds users, search, comments, schedules, statuses

complete (default)

10

Full API access including custom fields and recurring tasks

custom

varies

Pick exactly the tools you need

Custom example:

MOTION_MCP_TOOLS=custom:motion_tasks,motion_projects,motion_search npx motionmcp

Tools Reference

motion_tasks

Operations: create, list, list_all_uncompleted, get, update, delete, move, unassign

The primary tool for task management. Supports all Motion API parameters including name, description, priority, dueDate, duration, labels, assigneeId, and autoScheduled. You can reference workspaces and projects by name — the server resolves them automatically.

list_all_uncompleted spans every workspace in one call (it ignores workspaceId/workspaceName) and honors the dueDate and priority filters, so "what's due this week across all my workspaces?" resolves directly. On list, dueDate is an inclusive on-or-before-day bound that includes overdue tasks (so dueDate: "today" answers "what's due today?"), and completedAfter / completedBefore bound by completion date in your account's time zone for "what did I get done this week?". Dates are interpreted in your Motion account's time zone, and list responses lead with a header naming that zone and today's local date.

{
  "operation": "create",
  "name": "Complete API integration",
  "workspaceName": "Development",
  "projectName": "Release Cycle Q2",
  "dueDate": "2025-06-15T09:00:00Z",
  "priority": "HIGH",
  "labels": ["api", "release"]
}

motion_projects

Operations: create, list, get

Manage Motion projects. Workspace and project names are fuzzy-matched, and the server auto-selects your "Personal" workspace if none is specified.

{"operation": "create", "name": "New Project", "workspaceName": "Personal"}

motion_workspaces

Operations: list, get

List and inspect workspaces.

motion_users

Operations: list, current

List users in a workspace or get the current authenticated user.

Operations: content

Search tasks and projects by query across a workspace.

{"operation": "content", "query": "API integration", "workspaceName": "Development"}

motion_comments

Operations: list, create

Read and add comments on tasks and projects.

{"operation": "create", "taskId": "task_123", "content": "Updated the API endpoints as discussed"}

motion_schedules

Operations: list

Retrieve user schedules, showing each day's working hours (start-end per day) and time zones. These are recurring working-hour templates only — they do not expose actual calendar events or meetings, so they cannot by themselves show a true free/busy picture; combine with tasks' scheduledStart/scheduledEnd to see what Motion has auto-booked.

motion_custom_fields

Operations: list, create, delete, add_to_project, remove_from_project, add_to_task, remove_from_task

Define and manage custom fields across workspaces, projects, and tasks.

{
  "operation": "create",
  "name": "Sprint",
  "type": "DROPDOWN",
  "options": ["Sprint 1", "Sprint 2", "Sprint 3"],
  "workspaceName": "Development"
}

motion_recurring_tasks

Operations: list, create, delete

Manage recurring task templates.

{
  "operation": "create",
  "name": "Weekly Team Standup",
  "recurrence": "WEEKLY",
  "projectName": "Team Meetings",
  "daysOfWeek": ["MONDAY", "WEDNESDAY", "FRIDAY"],
  "duration": 30
}

motion_statuses

Operations: list

List available statuses for a workspace.

Advanced Configuration

Minimal setup (3 tools only):

{
  "mcpServers": {
    "motion": {
      "command": "npx",
      "args": ["motionmcp"],
      "env": {
        "MOTION_API_KEY": "your_api_key",
        "MOTION_MCP_TOOLS": "minimal"
      }
    }
  }
}

Custom tools selection:

{
  "mcpServers": {
    "motion": {
      "command": "npx",
      "args": ["motionmcp"],
      "env": {
        "MOTION_API_KEY": "your_api_key",
        "MOTION_MCP_TOOLS": "custom:motion_tasks,motion_projects,motion_search"
      }
    }
  }
}

Using your local workspace (npm):

{
  "mcpServers": {
    "motion": {
      "command": "npm",
      "args": ["run", "mcp:dev"],
      "cwd": "/absolute/path/to/your/MotionMCP",
      "env": {
        "MOTION_API_KEY": "your_api_key"
      }
    }
  }
}

See the full developer setup in DEVELOPER.md.

Debugging

  • Logs output to stderr in JSON format

  • Check for missing keys, workspace/project names, and permissions

  • Use motion_workspaces (list) and motion_projects (list) to validate IDs

{
  "level": "info",
  "msg": "Task created successfully",
  "method": "createTask",
  "taskId": "task_789",
  "workspace": "Development"
}

License

Apache-2.0 License


For more information, see the full Motion API docs or Model Context Protocol docs.

Available Tools

10 tools
motion_commentsC

Manage comments on tasks

ParametersJSON Schema
NameRequiredDescriptionDefault
cursorNoPagination cursor for list operation (optional)
taskIdYesTask ID to comment on or fetch comments from (required)
contentNoComment content (required for create operation)
operationYesOperation to perform

TDQS

C2.1/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Manage' does not indicate whether operations are read-only or mutating, what side effects occur, or if permissions are needed. The agent cannot assess safety or impact from the description alone.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded, but it is under-specified rather than genuinely concise. A single vague phrase does not earn its place because it omits critical operational information that would cost the agent more effort to discover.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has four parameters, no output schema, and no annotations, so the description must provide substantial context. It fails to mention the two operations, expected return values, or any behavioral constraints, making it inadequate for an agent to invoke the tool confidently without opening the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with each parameter (cursor, taskId, content, operation) having a descriptive comment and operation having an enum. Since the schema fully documents parameters, the baseline of 3 applies even though the description adds no parameter-level detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The phrase 'Manage comments on tasks' identifies the resource (comments on tasks), which distinguishes it from sibling tools like motion_tasks or motion_projects. However, 'Manage' is a general verb and does not specify the actual operations (list/create) that the schema reveals, so purpose is only partially clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to choose this tool over alternatives or when to use list versus create. It merely states the resource without any context, exclusions, or conditions, leaving the agent to infer usage from the schema.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_custom_fieldsB

Manage custom fields for tasks and projects. Required params per operation: list: workspaceId or workspaceName. create: workspaceId/workspaceName + name + field (type); options[] also required for select/multiSelect. delete: workspaceId/workspaceName + fieldId. add_to_project: projectId + fieldId. remove_from_project: projectId + valueId. add_to_task: taskId + fieldId. remove_from_task: taskId + valueId.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoField name. Required for: create.
fieldNoField type. Required for: create. Also needed for add_to_project/add_to_task when providing a non-null value.
valueNoField value to set. Optional for add_to_project/add_to_task. When provided and non-null, the field param (type) is also required.
taskIdNoTask ID. Required for: add_to_task, remove_from_task.
fieldIdNoCustom field definition ID. Required for: delete, add_to_project, add_to_task. For remove operations, use valueId instead.
optionsNoOption labels. Required for: create when field is select or multiSelect (at least one).
valueIdNoCustom field value assignment ID (not the field definition ID). Required for: remove_from_project, remove_from_task.
requiredNoWhether field is required on tasks/projects.
operationYesOperation to perform
projectIdNoProject ID. Required for: add_to_project, remove_from_project.
workspaceIdNoWorkspace ID. Required for: list, create, delete.
workspaceNameNoWorkspace name (alternative to workspaceId). Required for: list, create, delete.

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It reveals useful conditional behavior (e.g., options[] is mandatory when create uses select/multiSelect, and valueId is used for removals while fieldId is used for additions) but is silent on side effects: delete's destructive nature, whether add/remove operations impact existing tasks and projects, reversibility, or what list returns. The mutating operations are never flagged as writes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded and the rest is a dense per-operation parameter matrix with zero fluff; every clause earns its place. The single-paragraph format is less scannable than a structured list would be for a 7-operation dispatcher, but the information density and lack of redundancy make it efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 12-parameter, 7-operation tool with no annotations and no output schema, the description thoroughly covers the required-parameter matrix, which is the primary invocation risk. It leaves meaningful gaps: no indication of return values (especially for list), no warning about the destructive effect of delete or the side effects of add/remove operations, and no error behavior for conflicting inputs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description mostly consolidates constraints already present in the schema (workspaceId/workspaceName alternatives, fieldId vs valueId distinction, options required for select/multiSelect), but it adds value by organizing these constraints into a per-operation quick-reference matrix that reduces the risk of passing the wrong parameter combination.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific resource ('custom fields for tasks and projects') and enumerates seven concrete operations, which clearly distinguishes it from all siblings (none of which concern custom fields). The verb 'Manage' is generic, but the per-operation breakdown with required params makes the purpose concrete and actionable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance on when to choose this tool over siblings like motion_tasks or motion_projects, so tool-selection usage is only implied by the resource name and operation list. However, the description does give strong intra-tool routing guidance by specifying which params are required for each of the seven operations, effectively telling an agent how to invoke it correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_projectsC

Manage Motion projects - supports create, list, and get operations

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoProject name (required for create)
operationYesOperation to perform
projectIdNoProject ID (required for get operation)
descriptionNoProject description
workspaceIdNoWorkspace ID
allWorkspacesNoList projects from all workspaces (for list operation only). When true and no workspace is specified, returns projects from all workspaces.
workspaceNameNoWorkspace name (alternative to ID)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden of behavioral disclosure. It only restates the operation names and does not mention side effects of create, authentication/permission needs, pagination behavior for list, error cases, or response shapes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that front-loads the resource and then lists the supported operations. There is no redundant detail or filler, making it appropriately concise and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a multi-operation tool with 7 parameters, operation-dependent requirements, no output schema, and no annotations. The description does not explain which parameters apply to which operation in practice, what a successful create returns, how list results are delivered, or any operational limitations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides descriptions for all 7 parameters, so the baseline is 3. The description adds no additional parameter-level meaning, but it does not need to because the schema coverage is complete and self-explanatory.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the target resource, 'Motion projects', and enumerates the exact supported operations: create, list, and get. This makes the tool's scope reasonably obvious and distinguishes it from the sibling tools, which target other Motion resources. However, the verb 'Manage' is broad and could imply update/delete operations that are not actually supported.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, nor when each operation should be selected. An agent is left to infer usage from the operation enum and parameter descriptions in the schema.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_recurring_tasksA

Manage recurring tasks. Required params per operation: list: workspaceId or workspaceName. create: workspaceId/workspaceName + name + assigneeId + frequency (with frequency.type). delete: recurringTaskId.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoTask name. Required for: create.
durationNoTask duration in minutes (non-negative number) or REMINDER
priorityNoTask priority (default: MEDIUM)
scheduleNoSchedule name (default: Work Hours)
frequencyNoFrequency configuration (required for create)
idealTimeNoIdeal time in HH:mm format
operationYesOperation to perform
projectIdNoProject ID.
assigneeIdNoUser ID, or the 'me' shortcut for the current user. Required for: create.
startingOnNoStart date (ISO 8601 format)
descriptionNoTask description.
workspaceIdNoWorkspace ID. Required for: list, create.
deadlineTypeNoDeadline type (default: SOFT)
workspaceNameNoWorkspace name (alternative to workspaceId). Required for: list, create.
recurringTaskIdNoRecurring task ID. Required for: delete.

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must carry the behavioral burden, and it does disclose the three operation modes, letting an agent infer read (list) versus mutating (create/delete) behavior. It does not state side effects of delete (e.g., whether the entire recurrence series is removed) or any return/error behavior, leaving a meaningful gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, all high-signal: first names the resource, second gives operation-specific required params. No fluff, and the most actionable information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 15 params, nested frequency objects, and three operations, the description provides the critical operation routing but relies heavily on the schema for optional params and frequency semantics. With no output schema and no annotations, it omits return-value and delete side-effect context, so completeness is adequate but not thorough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 100%, so the baseline is 3; the description's required-param mapping largely duplicates 'Required for: create/list/delete' already present in the schema properties. It usefully highlights frequency.type as part of create but adds no semantic detail beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the resource (recurring tasks) and enumerates three concrete operations (list/create/delete) in the required-params sentence. It is distinguishable from sibling tools like motion_tasks by the 'recurring' qualifier, though the opening verb 'Manage' is generic.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The required-params-by-operation breakdown gives clear invocation rules for each operation, which helps an agent choose the operation and fill required fields. It does not, however, explain when recurring tasks should be handled here versus motion_tasks or motion_search, so exclusion/alternative guidance is absent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_schedulesA

Get all schedules showing each day's working hours (start-end per day) and time zones. The Motion API returns all schedules with no filtering options. These are recurring working-hour templates only — they do NOT expose actual calendar events or meetings, so they cannot by themselves show a true free/busy picture; combine with tasks' scheduledStart/scheduledEnd to see what Motion has auto-booked.

ParametersJSON Schema
NameRequiredDescriptionDefault
operationNoOperation to perform

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full disclosure burden and does so thoroughly: it states all schedules are returned, there is no filtering, the data is limited to recurring working-hour templates, and calendar events/meetings are not exposed. This prevents the agent from misusing the result as free/busy data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three tight sentences front-load the core purpose, then add the no-filtering constraint and the important usage limitation. Every sentence earns its place with no repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list-all tool with no required parameters and no output schema, the description is complete: it names the return contents, scope, limitations, and how to get the missing free/busy picture. An agent has enough to invoke it correctly and interpret results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents the single operation parameter with 100% coverage. The description adds the useful fact that the API supports no filtering, but it does not elaborate on the operation parameter beyond what the enum already conveys.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource — 'Get all schedules' — and defines the payload as each day's working hours and time zones. It is clearly distinguishable from sibling tools like motion_tasks or motion_statuses because it names schedules as recurring working-hour templates.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly notes there are no filtering options and that the result cannot show true free/busy availability, instructing the agent to combine with tasks' scheduledStart/scheduledEnd. This gives clear context for when to use it, though it does not name a sibling tool as the alternative.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_statusesA

Get available task/project statuses for a workspace

ParametersJSON Schema
NameRequiredDescriptionDefault
operationNoOperation to perform
workspaceIdNoWorkspace ID to get statuses for (optional, returns all statuses if not specified)
workspaceNameNoWorkspace name (alternative to workspaceId, resolved to an ID automatically)

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Get' implies a read operation, but the description does not mention response shape, whether results include both task and project statuses, authentication needs, or any limits; it only adds the workspace-scoping information already present in the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler or redundant content. Every word contributes to identifying the tool's purpose and scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only lookup with no required parameters and no output schema, the description is largely sufficient: it states what is returned and for which scope. It does not describe return formatting or the list-only operation, but those are low-risk gaps given the schema's full parameter documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents operation, workspaceId, and workspaceName. The description adds minimal meaning beyond the schema, naming only the workspace concept; the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get'), a clear resource ('available task/project statuses'), and a scope ('for a workspace'). This distinguishes it from all listed siblings, which target different resources such as tasks, projects, comments, or custom fields.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used when statuses are needed, but it provides no explicit when-to-use guidance, prerequisites, or comparison with alternative tools. Since no sibling covers statuses, the lack of explicit exclusions is not critical, but the guidance remains only implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_tasksC

Manage Motion tasks - supports create, list, get, update, delete, move, unassign, and list_all_uncompleted operations

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoTask name (required for create, optional for list as case-insensitive substring search, filtered client-side)
limitNoMaximum number of tasks to return (for list and list_all_uncompleted)
labelsNoArray of label names. Applied to the task on create/update; filters results on list
statusNoFilter by status (for list). Single string or array of strings (e.g., ["Todo", "Completed"]). Without status or includeAllStatuses, only active (non-resolved) tasks are returned. Use motion_statuses to list valid values per workspace.
taskIdNoTask ID (required for get/update/delete/move/unassign)
dueDateNoDue date (for create/update) or filter (for list and list_all_uncompleted). Format: YYYY-MM-DD, a full ISO 8601 timestamp with offset, or relative like 'today', 'tomorrow'. FILTER (list, list_all_uncompleted): an inclusive upper bound at day granularity in the account timezone — returns every task due ON OR BEFORE that day, which INCLUDES overdue tasks. So dueDate:'today' answers "what's due today?" (including anything overdue) in a single call. There is no exact-date or date-range filter; to show only tasks due exactly on a day, filter the returned results by their Due Date yourself. CREATE/UPDATE: a date-only value is stored as end of day (23:59:59) in the account's schedule timezone when all schedules agree on one, so it renders back as the same calendar day; it falls back to end-of-day UTC when no single zone is resolvable. Pass an explicit ISO timestamp with an offset to control the exact instant. Relative keywords resolve against the same account timezone, falling back to UTC otherwise.
assigneeNoAssignee name, email, or the 'me' shortcut. Resolved to an ID automatically for list, list_all_uncompleted, create, update, and move. A name that cannot be resolved returns an error. Must be non-empty; use the unassign operation to clear a task's assignee.
durationNoMinutes (as number) or 'NONE'/'REMINDER' (as string)
priorityNoTask priority: ASAP, HIGH, MEDIUM, LOW. Set on create/update; filters results on list and list_all_uncompleted (filtered client-side)
operationYesOperation to perform
projectIdNoFilter by project (for list)
assigneeIdNoAssignee user ID, or the 'me' shortcut for the current user. Filters on list/list_all_uncompleted; sets the assignee on create/update; reassigns on move. The 'me' shortcut is resolved to a concrete ID for all of these. Must be non-empty; use the unassign operation to clear a task's assignee.
descriptionNoTask description
projectNameNoProject name (alternative to projectId)
workspaceIdNoFilter by workspace (for list). Ignored by list_all_uncompleted, which always spans every workspace.
autoScheduledNoAuto-scheduling configuration. Can be either: - A schedule name string: "Work Hours" (simple, no start date) - An object for full control: {"schedule": "Work Hours", "startDate": "2025-03-05", "deadlineType": "SOFT"} When the user specifies a start date, you MUST use the object form. Use motion_schedules to see available schedule names.
workspaceNameNoFilter by workspace name (for list). Ignored by list_all_uncompleted, which always spans every workspace.
completedAfterNoFilter (for list): keep only tasks COMPLETED on or after this local calendar date. Format: YYYY-MM-DD or relative like 'today', 'yesterday'. Filtered client-side and auto-includes completed/resolved tasks, so 'what did I get done this week?' is completedAfter set to the week's start date. Combine with completedBefore for a window. Note: this filters on completion date, not due date; a very high-volume window can be capped by pagination (reported in the response), not silently.
completedBeforeNoFilter (for list): keep only tasks COMPLETED on or before this local calendar date. Format: YYYY-MM-DD or relative like 'today'. Filtered client-side; pair with completedAfter to bound a completion window.
targetWorkspaceIdNoTarget workspace ID (required for move operation). Move transfers a task between workspaces — project-level targeting is not supported by the Motion API.
includeAllStatusesNoWhen true, returns tasks across all statuses including completed/resolved (for list). Cannot be combined with status filter.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the main description carries the full burden of behavioral disclosure, but it only lists operation names. It does not mention client-side filtering, that list_all_uncompleted spans every workspace, that move is workspace-only, or that delete is destructive. Those details exist in parameter descriptions, but the main description does not provide them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with no filler, enumerating the supported operations efficiently. It could be more informative without becoming bloated, but there is no redundancy or wasted wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 21-parameter, eight-operation tool with no annotations and no output schema, this one-line summary is significantly under-specified. Missing high-level context includes operation-specific behavior, return information, and when to use alternative tools; an agent would need to read every parameter description to use it safely.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The main description adds no parameter-level meaning, but schema description coverage is 100%, so the baseline of 3 applies. All 21 parameters, including operation, status, dueDate, assignee, and autoScheduled, already have detailed explanations in the input schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a concrete resource (Motion tasks) and explicitly lists eight operations, so an agent can recognize this as the task-management tool. It is less crisp than a focused verb-plus-scope phrase because 'Manage' is generic, but the operation list clearly distinguishes it from siblings like motion_comments, motion_search, or motion_recurring_tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus its siblings. The description does not mention alternatives, exclusions, or prerequisites, and it leaves the agent to infer from operation names which request should go here rather than to motion_search, motion_statuses, or motion_recurring_tasks.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_usersC

Manage users and get current user information

ParametersJSON Schema
NameRequiredDescriptionDefault
teamIdNoTeam ID to filter users by (optional for list operation)
operationYesOperation to perform
workspaceIdNoWorkspace ID (optional for list operation, ignored for current)
workspaceNameNoWorkspace name (alternative to workspaceId, ignored for current)

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full responsibility for behavioral disclosure. 'Manage users' misleadingly implies mutating operations, while the schema reveals only read-style operations (list/current). It also does not disclose authentication requirements, side effects, or any limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loads the resource. However, the vague word 'Manage' earns less than a fully tight description like 'List users or get current user information' would, so it is concise but slightly imprecise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description leaves important context—operation semantics, filter behavior, and return expectations—unstated. An agent would need to infer most behavior from the input schema alone, making this incomplete for a multi-operation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters. The description adds no extra meaning beyond loosely implying the 'current' operation via 'get current user information', which matches the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the resource ('users') and one specific operation ('get current user information'), but the leading verb 'Manage' is vague and overstates the scope—the schema only supports 'list' and 'current', not general user management. It does distinguish the tool from sibling tools by resource, but not by operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to choose 'list' vs 'current', nor any mention of team/workspace filtering or when this tool should be preferred over alternatives. The only implicit usage signal is that it is user-related, which is not enough for correct operation selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

motion_workspacesA

Manage Motion workspaces - supports list and get operations

ParametersJSON Schema
NameRequiredDescriptionDefault
operationYesOperation to perform
workspaceIdNoWorkspace ID (required for get operation)

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It states the operations are list and get, which implies read-only behavior and no destructive side effects, but it provides no additional context about permissions, errors, rate limits, or response behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler. It wastes little space, though 'Manage' is somewhat redundant given the operation list.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-operation tool with a clear schema, the description is adequately complete for selection and invocation. It does not describe return shapes, but no output schema exists and the operations' semantics are straightforward enough to infer.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents the operation enum and the workspaceId parameter at 100% coverage. The description adds little beyond restating that list and get are supported, so it meets the baseline but does not enhance parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the resource (Motion workspaces) and enumerates the supported operations (list and get), which clearly differentiates it from sibling tools operating on other resources. The word 'Manage' is vague, but the operation list makes the actual scope explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is for reading workspace data, but it does not explicitly state when to prefer it over alternatives or mention any exclusions. Since the sibling tools target different resources, the usage context is largely inferable rather than explicitly guided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 10 tool updatesv2.9.0
    • First observedmotion_comments
    • First observedmotion_custom_fields
    • First observedmotion_projects
    • First observedmotion_recurring_tasks
    • First observedmotion_schedules
    • First observedmotion_search
    • First observedmotion_statuses
    • First observedmotion_tasks
    • First observedmotion_users
    • First observedmotion_workspaces

TDQS

B3.2/5.0

Scored across 10 tools

Disambiguation4/5

Each tool is named after a distinct Motion resource, and the descriptions clarify intent. The main ambiguity is between motion_tasks and motion_recurring_tasks, since recurring tasks are a subset of tasks, and motion_custom_fields includes task/project association operations that could be mistaken for task or project edits.

Naming Consistency5/5

All tools follow a consistent motion_<resource> snake_case naming pattern, making the API surface predictable. motion_search is the only non-plural-resource name, but it still fits naturally within the prefix convention.

Tool Count5/5

Ten tools cover the main Motion API domains without redundancy or bloat. This is a well-scoped count for a server managing tasks, projects, workspaces, users, and related settings.

Completeness3/5

Tasks have strong CRUD coverage, but projects only support create/list/get with no update or delete, and recurring tasks lack update operations. These lifecycle gaps create dead ends for agents, and comments lack explicit operation detail in the description.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers