Skip to main content
Glama

kb_get_personal

Retrieve stored personal details and preferences to provide AI assistants with immediate context about you, enabling personalized interactions across sessions.

Instructions

Get personal information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Tool handler in the main switch statement that calls KnowledgeManager.getPersonal() and returns the result as JSON-formatted text content.
    case 'kb_get_personal': { return { content: [ { type: 'text', text: JSON.stringify(km.getPersonal(), null, 2) } ] }; }
  • Tool schema definition in the tools array, specifying name, description, and empty input schema.
    { name: 'kb_get_personal', description: 'Get personal information', inputSchema: { type: 'object', properties: {} } },
  • Implementation of getPersonal() method in KnowledgeManager class, which returns a shallow copy of the personal info from the knowledge base.
    getPersonal(): PersonalInfo { return { ...this.kb.personal }; }

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/hlsitechio/mcp-instruct'

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