kb_get_personal
Retrieve stored personal information and preferences to provide AI assistants with consistent context about your identity and needs.
Instructions
Get personal information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:207-214 (schema)Tool schema definition for 'kb_get_personal', including name, description, and empty input schema.{ name: 'kb_get_personal', description: 'Get personal information', inputSchema: { type: 'object', properties: {} } },
- src/index.ts:692-701 (handler)MCP tool handler implementation. Retrieves personal information using KnowledgeManager.getPersonal() and returns it as JSON-formatted text content.case 'kb_get_personal': { return { content: [ { type: 'text', text: JSON.stringify(km.getPersonal(), null, 2) } ] }; }
- src/KnowledgeManager.ts:332-334 (helper)KnowledgeManager helper method that returns a shallow copy of the personal information object from the internal knowledge base.getPersonal(): PersonalInfo { return { ...this.kb.personal }; }