Skip to main content
Glama

edubase_get_user_organizations

Read-onlyIdempotent

Retrieve all organizations associated with a given user ID to determine account access and memberships.

Instructions

List all organizations a user is member of.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userYesuser identification string

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
organizationsYes

Schema Changelog

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

  1. Changed3 schema fields changedv1.2.15
    • removedOutput schema / properties / organizations / items / properties / name
      Removed value: -{
      -  "description": "title of the organization",
      -  "type": "string"
      -}
    • addedOutput schema / properties / organizations / items / properties / title
      Added value: +{
      +  "description": "title of the organization",
      +  "type": "string"
      +}
    • changedOutput schema / properties / organizations / items / required
      Previous value: -[
      -  "organization",
      -  "name",
      -  "link",
      -  "permission"
      -]New value: +[
      +  "organization",
      +  "title",
      +  "link",
      +  "permission"
      +]
  2. Addedv1.2.9
  3. Removedv1.2.8
  4. Changed2 schema fields changedv1.1.2
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "organizations": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "department": {
      +            "anyOf": [
      +              {
      +                "type": "string"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ],
      +            "description": "name of the department (if member)"
      +          },
      +          "id": {
      +            "anyOf": [
      +              {
      +                "type": "string"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ],
      +            "description": "external unique organization identifier (if set for the organization)"
      +          },
      +          "link": {
      +            "description": "link to the organization manager page",
      +            "type": "string"
      +          },
      +          "name": {
      +            "description": "title of the organization",
      +            "type": "string"
      +          },
      +          "organization": {
      +            "description": "organization identification string",
      +            "type": "string"
      +          },
      +          "permission": {
      +            "additionalProperties": false,
      +            "description": "permissions",
      +            "properties": {
      +              "content": {
      +                "description": "permission level to contents in organization",
      +                "type": "string"
      +              },
      +              "organization": {
      +                "description": "permission level to organization",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "organization",
      +              "content"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "organization",
      +          "name",
      +          "link",
      +          "permission"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "organizations"
      +  ],
      +  "type": "object"
      +}
  5. First observedv1.0.22

TDQS

A3.8/5.0
Behavior3/5

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

The annotations declare readOnlyHint, idempotentHint true and destructiveHint false, so the safety profile is fully covered. The description adds no further behavioral context beyond the membership scope—no pagination, no handling of missing users, no permission requirements—but it does not contradict the annotations. Given the annotation coverage, a mid score 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?

One short sentence delivers the whole semantic payload with no filler, and the most important words ('List', 'organizations', 'user', 'member') come first.

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?

The tool is low complexity and has an output schema, so the description does not need to describe return values. Together with a one-parameter schema, the definition is mostly sufficient to call the tool given a known user identifier. It is only lacking a small amount of situational guidance about user-identification formats or alternatives, which is captured in the other dimensions.

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 has 100% description coverage for `user` as a 'user identification string', and the description clarifies that this parameter is the user whose memberships are listed. No format, whether it must be an internal ID or email, or whether it can represent the current user, is specified, so the description adds only minimal meaning over 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 is a single clause with a specific verb ('List'), a resource ('organizations'), and a scoping qualifier ('a user is member of') that clearly distinguishes membership lookup from system-wide organization listing or group/class lookups. This is sufficient to pick it over siblings like edubase_get_organizations or edubase_get_organization_members.

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 does not state any explicit condition for use, nor does it name alternatives or exclusions (e.g., 'for the current user use get_user_me' or 'for all organizations use get_organizations'). The intended use is only implicit in the tool's operation, so an agent gets no explicit help choosing among related organization/user endpoints.

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