motimate-mcp
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., "@motimate-mcpWho hasn't completed the safety training?"
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.
motimate-mcp
MCP Server für Motimate – ermöglicht Claude for Mac direkten Zugriff auf Schulungsinhalte eurer Organisation.
Was ist Motimate?
Motimate ist eine mobile Lernplattform (LMS) für Unternehmen. Mitarbeitende erhalten Schulungen, Onboardings und Trainings direkt auf ihr Smartphone – ideal für Teams im Außendienst, Einzelhandel oder Produktion. Inhalte werden als sogenannte Motis (kurze, interaktive Lerneinheiten) bereitgestellt und können zu Lernpfaden kombiniert werden.
Was macht dieses Paket?
Dieses MCP-Paket (Model Context Protocol) verbindet die Motimate-API mit Claude. Damit kann Claude direkt auf Schulungsinhalte, Lernpfade und Fortschrittsdaten zugreifen – ohne Umweg über das Motimate-Dashboard. Nützlich für:
HR & L&D-Teams: Schulungsinhalte per Chat durchsuchen und verwalten
Admins: Neue Schulungen erstellen und bestehende aktualisieren
Manager: Lernfortschritte von Teams abfragen
Related MCP server: Clio Manage MCP
Was kann Claude damit?
Befehl | Beispiel-Prompt |
Schulungen suchen | „Zeig mir alle Schulungen zum Thema Onboarding" |
Schulungsdetails & Kapitel | „Was sind die Kapitel in der Schulung ‚Onboarding Grundlagen'?" |
Lernpfade anzeigen | „Welche Lernpfade gibt es bei uns?" |
Fortschritt abfragen | „Wer hat die Sicherheitsschulung noch nicht abgeschlossen?" |
Neue Schulung erstellen | „Erstelle eine neue Schulung mit dem Titel ‚Neue Feature Release Q2'" |
Schulung aktualisieren | „Füge der Schulung ID 123 die Tags 'pflicht' und 'neu' hinzu" |
Voraussetzungen
Node.js ≥ 18 (nodejs.org)
Claude for Mac (claude.ai/download)
Motimate API-Zugangsdaten (
client_id+client_secret) – beim Motimate-Support anfragen
Installation (einmalig pro MacBook)
# 1. Repo klonen
git clone https://github.com/SkHCrusher/motimate-mcp.git
cd motimate-mcp
# 2. Abhängigkeiten installieren & bauen
npm install
npm run build
# 3. .env anlegen
cp .env.example .envJetzt .env mit einem Editor öffnen und die Werte eintragen:
MOTIMATE_CLIENT_ID=dein_client_id
MOTIMATE_CLIENT_SECRET=dein_client_secret
MOTIMATE_API_BASE_URL=https://YOUR-ORG.motimateapp.com/public_api
MOTIMATE_APP_URL=https://motimate.app/your-orgClaude for Mac konfigurieren
Die Konfigurationsdatei von Claude for Mac öffnen:
open ~/Library/Application\ Support/Claude/claude_desktop_config.jsonFolgenden Block einfügen (Pfad anpassen!):
{
"mcpServers": {
"motimate": {
"command": "node",
"args": ["/ABSOLUTER/PFAD/ZU/motimate-mcp/dist/index.js"],
"env": {
"MOTIMATE_CLIENT_ID": "dein_client_id",
"MOTIMATE_CLIENT_SECRET": "dein_client_secret",
"MOTIMATE_API_BASE_URL": "https://YOUR-ORG.motimateapp.com/public_api",
"MOTIMATE_APP_URL": "https://motimate.app/your-org"
}
}
}
}Tipp: Den absoluten Pfad ermitteln mit
pwdim Projektordner.
Claude for Mac neu starten – das Hammer-Symbol in der Eingabeleiste zeigt an, dass der Server verbunden ist.
Rollout im Team
Für jedes MacBook im Team:
Repo klonen (oder ZIP herunterladen)
npm install && npm run buildclaude_desktop_config.jsonmit den API-Credentials ergänzenClaude for Mac neu starten
Die API-Credentials sind für alle gleich (Organisation-Level) – kein individueller Login nötig.
API-Hinweise
Rate Limit: 1.200 Requests pro 10 Minuten
Auth: OAuth2
client_credentials– Token wird automatisch erneuertDie Basis-URL der API (
YOUR-ORG.motimateapp.com/public_api) unterscheidet sich von der App-URL (motimate.app/your-org) – beide müssen in der.envgesetzt sein
Remote Server (Claude Desktop Connector)
Statt den Server lokal zu installieren, kann er auch als HTTP-Server gehostet und über den Claude Desktop Connector-Dialog eingebunden werden.
Server starten
# .env mit Credentials anlegen (siehe oben), dann:
npm run start:httpDer Server läuft dann auf http://localhost:3000/mcp (Port über PORT-Env-Variable änderbar).
In Claude Desktop einbinden
In Claude Desktop: Einstellungen → Connectors → Benutzerdefinierten Connector hinzufügen
Name:
MotimateURL:
https://dein-server.example.com/mcpHinzufügen klicken
Hinweis: Claude Desktop erwartet HTTPS. Für Produktivbetrieb den Server hinter einem Reverse-Proxy (z.B. Caddy, nginx) oder auf einem Hosting-Dienst (Railway, Render, Fly.io) mit HTTPS betreiben.
Verfügbare Tools
Tool | Beschreibung |
| Schulungen suchen & filtern |
| Kapitel einer Schulung abrufen (inkl. Inhaltsblöcke) |
| Inhalte aller Schulungen durchsuchen (Texte, Quizze) |
| Lernfortschritt abfragen |
| Lernpfade suchen |
| Abschnitte eines Lernpfads |
| Alle Kategorien |
| Alle Ordner |
| Neue Schulung erstellen |
| Schulung aktualisieren |
Entwicklung
npm run dev # TypeScript watch mode
npm run build # Einmaliger BuildAvailable Tools
10 toolsmotimate_create_motiA
Erstellt eine neue Schulung (Moti) in Motimate. Legt Titel, Beschreibung, Sprache, Farbe und Ordner fest. Kapitel müssen anschließend über das Motimate-Interface hinzugefügt werden.
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Hex-Farbe für die Schulungskarte, z.B. "#FF5733" | |
| title | Yes | Titel der Schulung | |
| folder_id | No | ID des Ordners, in dem die Schulung erstellt wird | |
| description | No | Kurzbeschreibung der Schulung (HTML erlaubt) | |
| locked_order | No | Wenn true, müssen Kapitel in vorgegebener Reihenfolge absolviert werden | |
| default_language | No | Sprache der Schulung, z.B. "de" oder "en" | de |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the disclosure burden. It adds one meaningful behavioral fact: chapters must be added later via the Motimate interface. However, it does not mention return values, permissions, or duplicate-creation behavior, leaving some behavioral ambiguity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tight, front-loaded sentences: the first states the action and scope, the second lists the affected fields, and the third gives a key limitation. Every sentence earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description plus the fully documented schema provide enough to call the tool correctly for the initial creation step, and the chapter caveat prevents a false expectation. However, with no output schema and no annotations, the description leaves return/confirmation behavior and side-effect details unstated.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 every parameter. The description's list of settable fields maps to most parameters but adds no new semantic detail beyond the schema; locked_order is not mentioned in prose, though the schema covers it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Erstellt eine neue Schulung (Moti) in Motimate.' The word 'neue' clearly separates creation from the sibling motimate_update_moti, and listing the settable fields makes the tool's scope unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It is clear from 'Erstellt eine neue Schulung' that this tool is for creating a new Moti, and the closing sentence sets the boundary that chapters cannot be added through this tool. It does not explicitly name alternatives like motimate_update_moti, but the context is strong enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_get_learning_path_sectionsA
Gibt alle Abschnitte eines Lernpfads zurück, inkl. der enthaltenen Schulungen.
| Name | Required | Description | Default |
|---|---|---|---|
| learning_path_id | Yes | ID des Lernpfads, dessen Abschnitte abgerufen werden sollen |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It indicates a read-only retrieval operation ('Gibt zurück') and states that the result includes the contained trainings. However, it does not mention behavior for invalid or missing learning_path_id, permissions, pagination, or potential side effects, leaving some transparency gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the main action and the most useful additional detail (that contained trainings are included). There is no filler or redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter retrieval tool without an output schema, the description is minimally viable: it tells the agent what the tool returns and the schema identifies the required input. It omits response shape, ordering, and error behavior, which are notable gaps but not critical for a simple read operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully documents the single parameter learning_path_id with a clear German description. The tool description adds no additional semantic detail about the parameter beyond what the schema provides, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a concrete verb ('Gibt ... zurück' / returns) and a concrete resource ('alle Abschnitte eines Lernpfads' / all sections of a learning path), and adds that contained trainings are included. This clearly distinguishes it from sibling tools like motimate_get_moti_chapters, which targets chapters of a MOTI, and motimate_search_learning_paths, which searches for learning paths.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the usage context: call this when you have a learning_path_id and need the sections of that learning path, including their trainings. However, it gives no explicit 'when not to use' guidance and does not contrast with sibling tools, so the agent must infer when this is the right choice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_get_moti_chaptersA
Gibt alle Kapitel (Lerneinheiten) einer bestimmten Schulung zurück.
| Name | Required | Description | Default |
|---|---|---|---|
| moti_id | Yes | ID der Schulung (Moti), deren Kapitel abgerufen werden sollen | |
| include_content | No | Wenn true, werden die Inhaltsblöcke (Texte, Bilder, Quizze) der Kapitel mitgeladen |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry behavioral information. It correctly implies a read-only operation, but it does not disclose that include_content defaults to true and controls whether heavy content blocks are loaded, nor does it provide response or error behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, focused sentence with no filler. It states the purpose clearly and is easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter getter with full schema coverage, the description is minimally sufficient. However, there is no output schema, no mention of the content-block inclusion behavior, and no relationship to sibling tools, so some semantics must be inferred.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents both parameters fully (100% coverage). The description adds no real parameter-level semantics beyond referencing 'einer bestimmten Schulung' for moti_id.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the operation: returns all chapters of a specific training. It uses a specific verb and resource, but it does not mention how this differs from sibling tools like motimate_search_moti_content or motimate_get_moti_progress.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'einer bestimmten Schulung' implies the tool is used when a specific training ID is already known and its chapters are needed. There is no explicit guidance on when not to use it or which alternative to choose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_get_moti_progressA
Zeigt den Lernfortschritt von Nutzern in einer Schulung. Kann nach Schulungs-ID oder Nutzer-ID gefiltert werden.
| Name | Required | Description | Default |
|---|---|---|---|
| moti_id | No | ID der Schulung – leer lassen für alle Schulungen | |
| user_id | No | ID des Nutzers – leer lassen für alle Nutzer |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral disclosure burden. It conveys read-only behavior through 'Zeigt' and describes filtering behavior, but it does not disclose output shape, pagination, permissions, or what exactly constitutes 'Lernfortschritt'. This is adequate but thin.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short, front-loaded sentences with no filler. The first sentence identifies the action and object; the second states the filtering options. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with two optional parameters, the description provides enough to invoke it. However, since there is no output schema, it does not clarify whether the result is per-user progress, aggregated progress, or a list of records, leaving the agent to infer the return shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters already explained in the schema. The description's mention of filtering by Schulungs-ID or Nutzer-ID adds only a slight rephrasing of the schema semantics, so it provides no meaningful additional value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear action ('Zeigt' = shows) and a specific resource ('Lernfortschritt von Nutzern in einer Schulung'), and identifies the two relevant filter dimensions. It does not explicitly differentiate from sibling tools, though 'progress' is a distinct concept from the chapter/content/search siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage contexts: retrieve progress for a specific training or user, or for all via empty IDs. However, it gives no explicit guidance on when to prefer this tool over alternatives like motimate_get_moti_chapters or motimate_search_motis, and no when-not-to-use conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_list_categoriesA
Gibt alle Kategorien zurück, mit denen Schulungen und Lernpfade in Motimate organisiert sind.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. 'Returns all categories' clearly implies a read-only, unfiltered list operation, and the qualifier 'alle' is useful. However, it does not disclose anything about ordering, output format, localization, or whether authentication or special permissions are required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise German sentence. It front-loads the action and result, and the explanatory clause adds meaningful context about categories without any wasted words or redundancy beyond the natural overlap with the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool, the description is mostly complete: it states what is returned and the domain context. However, since no output schema is provided, a slightly richer description of the return shape or ordering could help an agent understand exactly what to expect, though this is a minor gap given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters and 100% schema description coverage, so there are no parameter semantics to document. Per the baseline rule for zero-parameter tools, this earns a 4; the description does not need to compensate for anything.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Gibt zurück'), a resource ('alle Kategorien'), and adds useful context about how categories organize trainings and learning paths. It is clear and distinct from siblings like motimate_list_folders, though it does not explicitly call out why an agent would choose this over a sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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, such as motimate_list_folders or motimate_search_motis. There are no prerequisites, exclusions, or scenario-based hints beyond the obvious implication that one should call it when categories are needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_list_foldersB
Gibt alle Ordner zurück, in denen Schulungen abgelegt sind.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. The phrase 'Gibt alle Ordner zurück' makes the read-only intent clear, but it does not mention pagination, sorting, authentication, or whether the operation has any side effects. For a simple zero-parameter list tool this is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It communicates the core purpose efficiently and wastes no words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete enough for a very simple zero-parameter tool, but since there is no output schema, it does not explain what each folder entry contains or how results are returned. It also omits any mention of ordering or filtering behavior, leaving minor but real gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero properties and schema description coverage is 100%, so there are no parameters requiring explanation. The description naturally implies that the tool takes no arguments, which is consistent and sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear action and resource: it returns all folders where trainings are stored. It is specific enough to distinguish itself from search/create/update siblings, though it does not explicitly contrast with motimate_list_categories.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to use this tool versus the sibling tools. There is no mention of prerequisites, alternatives, or situations where a different tool like motimate_search_motis or motimate_list_categories would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_search_learning_pathsA
Sucht und listet Lernpfade in Motimate. Lernpfade bündeln mehrere Schulungen in einer strukturierten Reihenfolge.
| Name | Required | Description | Default |
|---|---|---|---|
| search | No | Suchbegriff für Lernpfade | |
| publish_status | No | Status: published = veröffentlicht, draft = Entwurf |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It clearly indicates a read-style search/list operation and explains the domain concept. However, it does not disclose result output, default behavior when no search term is supplied, or any special handling of draft learning paths.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, front-loaded with the action and target resource. The second sentence adds useful domain context without unnecessary padding or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two optional parameters, no nested objects, and no output schema, the description plus schema are sufficiently complete for correct invocation. The main gaps are the return shape and exact search semantics, but they are minor for a straightforward search/list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides descriptions for both parameters, with 100% coverage, so the baseline is 3. The description itself adds no parameter-level details; 'search' and 'publish_status' are already adequately explained in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific operation ('Sucht und listet') on a specific resource ('Lernpfade in Motimate'), and the second sentence clarifies that learning paths bundle multiple trainings. This makes it clearly distinguishable from siblings like motimate_search_motis, motimate_search_moti_content, and motimate_get_learning_path_sections.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use the tool: when the agent needs to search or enumerate learning paths rather than individual Motis, content, or sections. It does not explicitly name alternatives or exclusion conditions, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_search_moti_contentA
Durchsucht die Inhalte (Texte, Quizze, Bilder) aller Schulungen nach einem Suchbegriff. Lädt alle Kapitel mit Inhaltsblöcken und filtert nach Treffern.
| Name | Required | Description | Default |
|---|---|---|---|
| search | Yes | Suchbegriff – durchsucht Titel und Inhalte aller Schulungen |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses an important implementation behavior: it loads all chapters with content blocks and then filters for matches, implying a potentially expensive operation. It does not mention read-only guarantees, return format, or failure behavior, but the disclosed loading/filtering behavior is valuable context beyond 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The first sentence states the main purpose and scope, and the second explains the operational approach. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter search tool with no output schema, the description is largely sufficient: it states the search scope, the content types involved, and the loading/filtering mechanism. It leaves the exact return structure unspecified, but the tool's purpose implies a list of matching content items, so the gap is minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the parameter description already explains that the search term applies to titles and content. The tool description adds content-type details but does not materially enhance the meaning of the single parameter beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific action (Durchsucht) and a clear resource (Inhalte aller Schulungen), including concrete content types: Texte, Quizze, Bilder. This distinguishes it from sibling search tools like motimate_search_motis by focusing on content-level search across all trainings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly establishes when to use the tool: when searching inside the text, quiz, and image content of trainings. It does not explicitly compare against sibling tools or state when not to use it, but the context is unambiguous enough for an agent to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_search_motisB
Sucht und listet Schulungen (Motis) in Motimate. Kann nach Titel, Beschreibung, Kategorie, Ordner, Tags oder Status gefiltert werden.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Kommaseparierte Tags, z.B. "onboarding,sicherheit" | |
| search | No | Suchbegriff – filtert Titel und Beschreibung der Schulungen | |
| folder_id | No | Nur Schulungen in diesem Ordner | |
| category_id | No | Nur Schulungen dieser Kategorie zurückgeben | |
| publish_status | No | Status: published = veröffentlicht, draft = Entwurf |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description carries the full burden of behavioral disclosure. It does make the read/search nature clear ('Sucht und listet') and enumerates the filter surface, which covers the core behavior of a search tool. However, it discloses nothing about result format, pagination, ordering, or how filters combine, keeping this at a mid score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste: the first is front-loaded with the core action and resource, the second efficiently summarizes all filtering dimensions. No filler and no tautological restatement of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with zero required parameters, a fully documented schema, and no output schema, the description adequately conveys the purpose and filter options. Gaps remain: no disambiguation from motimate_search_moti_content, no mention of result scope or limits, and no statement about whether filters combine. These are non-fatal for a simple search tool but leave room for improvement.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 five parameters, giving a baseline of 3. The description's filter list ('Titel, Beschreibung, Kategorie, Ordner, Tags oder Status') restates the parameter semantics at a higher level of abstraction and adds no new detail beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Sucht und listet') with a specific resource ('Schulungen (Motis) in Motimate') and enumerates the filtering dimensions, making the core function clear. However, it does not explicitly distinguish this tool from the closely named sibling motimate_search_moti_content, so differentiation must be inferred from the tool name rather than the description.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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. With siblings like motimate_search_moti_content and motimate_search_learning_paths present, an agent gets no explicit signal for choosing between searching training metadata, searching inside training content, or searching learning paths. The usage context is only weakly implied by 'Sucht und listet Schulungen,' with no exclusions or named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
motimate_update_motiA
Aktualisiert Metadaten einer bestehenden Schulung: Titel, Beschreibung, Tags und Kategorien.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags als Array, z.B. ["onboarding", "pflicht"] | |
| title | No | Neuer Titel | |
| moti_id | Yes | ID der zu aktualisierenden Schulung | |
| description | No | Neue Beschreibung | |
| category_ids | No | Kategorie-IDs als Array |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full responsibility for behavioral disclosure. It only states that metadata is updated and lists fields; it does not explain whether the update is partial or full, what happens to omitted fields, whether permissions are required, or what response is returned. For a mutation tool, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that leads with the action and resource, then lists the relevant fields. It contains no filler, repetition, or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description plus the fully documented schema give an agent enough to identify the inputs and the general operation. However, with no annotations and no output schema, important behavior remains unspecified: whether fields are merged or overwritten, whether sending only moti_id is valid, and what the tool returns after updating.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter already documented in German, including array examples for tags and category_ids. The description restates the same field names without adding new meaning, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Aktualisiert'), names the exact resource ('Metadaten einer bestehenden Schulung'), and lists the affected fields (Titel, Beschreibung, Tags, Kategorien). This clearly differentiates it from create_moti, search_motis, and content/chapter tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'bestehenden Schulung' implies this tool is for modifying an existing training rather than creating or searching, which gives some usage context. However, there is no explicit when-to-use guidance, no mention of alternatives like create_moti, and no exclusions stated.
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. Dates show when Glama detected each change.
10 tool updates
v1.0.0- First observed
motimate_create_moti - First observed
motimate_get_learning_path_sections - First observed
motimate_get_moti_chapters - First observed
motimate_get_moti_progress - First observed
motimate_list_categories - First observed
motimate_list_folders - First observed
motimate_search_learning_paths - First observed
motimate_search_moti_content - First observed
motimate_search_motis - First observed
motimate_update_moti
TDQS
The tools are mostly distinct, each targeting a clear resource-action pair such as searching trainings, retrieving chapters, checking progress, or managing learning paths. The only mild ambiguity is between search_motis and search_moti_content, but the descriptions clarify that one filters training metadata and the other searches inside training content.
All tools follow the same motimate_<verb>_<noun> pattern with search, get, list, create, and update verbs. The naming is predictable and consistent, making it easy for an agent to infer what each tool does.
Ten tools is well-scoped for a learning-platform MCP server. The set covers the main entity types without redundancy or unnecessary bloat.
Read and search coverage is strong, and basic create/update for trainings exists. However, there is no delete operation, no chapter management, and learning paths are read-only, so the lifecycle is incomplete and creating a Moti leaves content authoring as an external manual step.
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 Connectors
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Connect Claude AI to UluP Spaces via MCP — create projects, nodes, and tasks with OAuth 2.0.
Cloud-hosted MCP server for secure AI access to enterprise data sources via CData Connect AI.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceThis MCP server connects Claude Desktop to OpenCTI for AI-augmented threat intelligence analysis, enabling natural language queries and instant, contextualized answers from your threat intelligence database.29-
- AlicenseAqualityCmaintenanceMCP server that connects Clio Manage to Claude via OAuth, enabling law firm management tasks like matter lookup, time tracking, billing, calendar, and document retrieval through natural language.41MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that gives Claude access to real-time Garmin Connect and Strava data for analyzing training and suggesting sessions.-
- AlicenseNot gradedqualityDmaintenanceAn MCP server that connects Claude to your Google Chat workspace, enabling search of messages, spaces, and DMs with automatic resolution of real display names.MIT
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/SkHCrusher/motimate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server