Skip to main content
Glama

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 .env

Jetzt .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-org

Claude for Mac konfigurieren

Die Konfigurationsdatei von Claude for Mac öffnen:

open ~/Library/Application\ Support/Claude/claude_desktop_config.json

Folgenden 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 pwd im 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:

  1. Repo klonen (oder ZIP herunterladen)

  2. npm install && npm run build

  3. claude_desktop_config.json mit den API-Credentials ergänzen

  4. Claude 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 erneuert

  • Die 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 .env gesetzt 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:http

Der Server läuft dann auf http://localhost:3000/mcp (Port über PORT-Env-Variable änderbar).

In Claude Desktop einbinden

  1. In Claude Desktop: Einstellungen → Connectors → Benutzerdefinierten Connector hinzufügen

  2. Name: Motimate

  3. URL: https://dein-server.example.com/mcp

  4. Hinzufü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

motimate_search_motis

Schulungen suchen & filtern

motimate_get_moti_chapters

Kapitel einer Schulung abrufen (inkl. Inhaltsblöcke)

motimate_search_moti_content

Inhalte aller Schulungen durchsuchen (Texte, Quizze)

motimate_get_moti_progress

Lernfortschritt abfragen

motimate_search_learning_paths

Lernpfade suchen

motimate_get_learning_path_sections

Abschnitte eines Lernpfads

motimate_list_categories

Alle Kategorien

motimate_list_folders

Alle Ordner

motimate_create_moti

Neue Schulung erstellen

motimate_update_moti

Schulung aktualisieren

Entwicklung

npm run dev   # TypeScript watch mode
npm run build # Einmaliger Build

Available Tools

10 tools
motimate_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
colorNoHex-Farbe für die Schulungskarte, z.B. "#FF5733"
titleYesTitel der Schulung
folder_idNoID des Ordners, in dem die Schulung erstellt wird
descriptionNoKurzbeschreibung der Schulung (HTML erlaubt)
locked_orderNoWenn true, müssen Kapitel in vorgegebener Reihenfolge absolviert werden
default_languageNoSprache der Schulung, z.B. "de" oder "en"de

TDQS

A3.9/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

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 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.

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: '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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
learning_path_idYesID des Lernpfads, dessen Abschnitte abgerufen werden sollen

TDQS

A3.7/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
moti_idYesID der Schulung (Moti), deren Kapitel abgerufen werden sollen
include_contentNoWenn true, werden die Inhaltsblöcke (Texte, Bilder, Quizze) der Kapitel mitgeladen

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 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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
moti_idNoID der Schulung – leer lassen für alle Schulungen
user_idNoID des Nutzers – leer lassen für alle Nutzer

TDQS

A3.5/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 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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

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 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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose4/5

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.

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, 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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
searchNoSuchbegriff für Lernpfade
publish_statusNoStatus: published = veröffentlicht, draft = Entwurf

TDQS

A4/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 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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
searchYesSuchbegriff – durchsucht Titel und Inhalte aller Schulungen

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoKommaseparierte Tags, z.B. "onboarding,sicherheit"
searchNoSuchbegriff – filtert Titel und Beschreibung der Schulungen
folder_idNoNur Schulungen in diesem Ordner
category_idNoNur Schulungen dieser Kategorie zurückgeben
publish_statusNoStatus: published = veröffentlicht, draft = Entwurf

TDQS

B3.3/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

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 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.

Purpose4/5

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.

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. 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags als Array, z.B. ["onboarding", "pflicht"]
titleNoNeuer Titel
moti_idYesID der zu aktualisierenden Schulung
descriptionNoNeue Beschreibung
category_idsNoKategorie-IDs als Array

TDQS

A3.5/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 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.

Conciseness5/5

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.

Completeness3/5

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.

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 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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 10 tool updatesv1.0.0
    • First observedmotimate_create_moti
    • First observedmotimate_get_learning_path_sections
    • First observedmotimate_get_moti_chapters
    • First observedmotimate_get_moti_progress
    • First observedmotimate_list_categories
    • First observedmotimate_list_folders
    • First observedmotimate_search_learning_paths
    • First observedmotimate_search_moti_content
    • First observedmotimate_search_motis
    • First observedmotimate_update_moti

TDQS

A3.7/5.0
Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

Ten tools is well-scoped for a learning-platform MCP server. The set covers the main entity types without redundancy or unnecessary bloat.

Completeness3/5

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

ActivityInactive
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

  • F
    license
    Not graded
    quality
    C
    maintenance
    This 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
    -
  • A
    license
    A
    quality
    C
    maintenance
    MCP 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.
    41
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An 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

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