Skip to main content
Glama
vuluu2k
by vuluu2k

getInbox

Retrieve all captured items from your personal knowledge base to review pending tasks, notes, and goals stored in markdown files.

Instructions

Get all items from the inbox/capture list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The actual implementation of the getInbox tool logic within the Brain class.
    async getInbox(): Promise<InboxItem[]> {
      try {
        const file = await this.sync.readSection("inbox");
        return parseInbox(file.content);
      } catch (err) {
        if (isNotFound(err)) return [];
        throw err;
      }
    }
  • Registration of the getInbox tool.
    toolHandler("getInbox", async () => brain.getInbox())

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/vuluu2k/knowledge_mcp'

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