Skip to main content
Glama

Get Page

get_page
Read-only

Retrieve a specific wiki page from a Canvas course by providing the course ID and page URL slug. Access page content directly for viewing or processing.

Instructions

Get a single wiki page by its URL slug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_urlYesThe page URL slug (e.g. "welcome-page")
course_idYesThe Canvas course ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
bodyNo
titleYes
page_idYes
publishedNo
created_atNo
updated_atNo
editing_rolesNo

Schema Changelog

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

  1. Changed1 schema field changedv1.18.9
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": {},
      +  "properties": {
      +    "body": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "created_at": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "editing_roles": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "page_id": {
      +      "type": "number"
      +    },
      +    "published": {
      +      "type": [
      +        "boolean",
      +        "null"
      +      ]
      +    },
      +    "title": {
      +      "type": "string"
      +    },
      +    "updated_at": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "url": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "page_id",
      +    "url",
      +    "title"
      +  ],
      +  "type": "object"
      +}
  2. First observedv1.18.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, covering the main behavioral trait. The description adds no extra behavioral context, such as pagination, performance, or error scenarios. It doesn't contradict the annotations, but also doesn't go beyond what the annotation already provides.

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 that conveys the essential information with zero waste. It is front-loaded and efficient.

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

Completeness5/5

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

For a simple read operation with a fully described schema, an output schema present, and read-only annotations, the description covers everything an agent needs to correctly invoke the tool. The output schema relieves the need to explain return values.

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 coverage is 100%, with both parameters (course_id and page_url) fully described, including an example for page_url. The description does not add further parameter meaning, so the baseline 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 states a specific verb ('Get') and resource ('single wiki page') with a precise identifier ('URL slug'). It clearly distinguishes from sibling tools like list_pages, create_page, update_page, and delete_page, making it unambiguous.

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 (when you need a single page by slug) but does not explicitly mention when to use this over alternatives. It lacks any 'use this when...' or 'instead of...' guidance, though the purpose is clear enough for an agent to infer.

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/bruchris/canvas-lms-mcp'

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