Skip to main content
Glama

edubase_post_integration

Create a new API or LMS integration to connect EduBase with external platforms. Specify integration type, title, LTI version, and platform URL for setup.

Instructions

Create a new API or LMS integration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ltiNoLTI version, required for LMS integrations
typeNotype of the integration (default: api)
titleYestitle of the integration
platformNoLMS platform URL, only necessary for LMS integrations!
descriptionNooptional short description
organizationNoorganization identification string to assign the integration to, only an organization of the API application owner can be used, always the organization of the user for organizational members

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
integrationYesintegration identification string

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changedv1.2.15
    • addedInput schema / properties / organization
      Added value: +{
      +  "description": "organization identification string to assign the integration to, only an organization of the API application owner can be used, always the organization of the user for organizational members",
      +  "type": "string"
      +}
  2. Changed6 schema fields changedv1.1.2
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • changedInput schema / properties / lti / description
      Previous value: -"LTI version (1.0/1.1 / 1.3), only necessary for LMS integrations!"New value: +"LTI version, required for LMS integrations"
    • addedInput schema / properties / lti / enum
      Added value: +[
      +  "1.0/1.1",
      +  "1.3"
      +]
    • changedInput schema / properties / type / description
      Previous value: -"type of the integration (api / moodle / canvas / d2l / schoology / lms)"New value: +"type of the integration (default: api)"
    • addedInput schema / properties / type / enum
      Added value: +[
      +  "api",
      +  "moodle",
      +  "canvas",
      +  "d2l",
      +  "schoology",
      +  "lms"
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "integration": {
      +      "description": "integration identification string",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "integration"
      +  ],
      +  "type": "object"
      +}
  3. First observedv1.0.22

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint: false, idempotentHint: false, and destructiveHint: false, which tells the agent this is a mutation that may not be idempotent. The description aligns (creating a new one is a mutation) but adds no new behavioral context like authentication requirements, consequences of duplicate calls, or side effects beyond what the annotations imply. Given the annotations, a 3 is appropriate.

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 clear sentence with no redundant or extraneous text. It is perfectly front-loaded: the verb and object are in the first few words. There is no filler, making it easy to read in a glance.

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?

Given a 6-parameter tool with a 100% described schema and an output schema present, the one-line description is minimally viable for an agent to understand core purpose. However, it does not cover any usage context or constraints like the fact that for LMS integrations you need type/lti/platform, which the schema hints at but the tool description itself does not reinforce. It also doesn't warn about any limitations or contrast with similar tools, so it's 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?

Schema description coverage is 100% (all 6 parameters have descriptions), so the baseline is 3. The description ('Create a new API or LMS integration') adds no tool level detail about parameters beyond what the schema already says; it doesn't mention defaults like 'type' defaulting to 'api', or the condition that platform/lti are required for LMS types. Since the schema covers everything, the description adds little value here.

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 'Create a new API or LMS integration' states a specific verb (create), the resource (integration), and the two main variants. The action is unambiguous and clearly distinguishes this from read (get_integrations/get_integration), update (patch_integration), and delete (delete_integration) siblings. It does not explicitly name the sibling tools, but the 'create new' phrasing is distinct enough.

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 gives no guidance about when to use this tool versus alternatives such as PATCH (edubase_patch_integration) or DELETE (edubase_delete_integration). It also doesn't state when not to use it, nor does it surface context like creating an LMS integration requiring the type, lti, or platform. The schema has these hints, but the description itself is silent about usage conditions.

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

Install Server

Other Tools

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/EduBase/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server