Skip to main content
Glama

note_get

Retrieve complete content of project notes by ID to access detailed task information and progress tracking data.

Instructions

PROJECT MANAGEMENT (TPM): Get full content of a specific note by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
note_idYesNote ID

Implementation Reference

  • Handler for note_get tool: retrieves the note from the database using note_id and returns its JSON dump or an error if not found.
    if name == "note_get":
        # Need to add get_note method to db
        note = db.get_note(args["note_id"])
        if not note:
            return f"Note {args['note_id']} not found"
        return _json(note.model_dump())
  • Tool registration for 'note_get' including name, description, and input schema definition.
    Tool(
        name="note_get",
        description="PROJECT MANAGEMENT (TPM): Get full content of a specific note by ID.",
        inputSchema={
            "type": "object",
            "properties": {
                "note_id": {"type": "string", "description": "Note ID"},
            },
            "required": ["note_id"],
        },
    ),
  • Input schema for note_get tool: requires note_id string.
    inputSchema={
        "type": "object",
        "properties": {
            "note_id": {"type": "string", "description": "Note ID"},
        },
        "required": ["note_id"],
    },

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/urjitbhatia/tpm-mcp'

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