Skip to main content
Glama

kb_get_professional

Retrieve professional information from persistent knowledge storage to provide AI agents with context about identity, work, and preferences across sessions.

Instructions

Get professional information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler for the kb_get_professional tool in the MCP server's CallToolRequestSchema switch statement. It retrieves professional information using km.getProfessional() and returns it as formatted JSON text content.
    case 'kb_get_professional': { return { content: [ { type: 'text', text: JSON.stringify(km.getProfessional(), null, 2) } ] }; }
  • The tool schema definition including name, description, and empty input schema (no parameters required). This is part of the tools array used for tool listing.
    name: 'kb_get_professional', description: 'Get professional information', inputSchema: { type: 'object', properties: {} } },
  • The helper method getProfessional() in KnowledgeManager class that returns a shallow copy of the professional information from the internal knowledge base state.
    getProfessional(): ProfessionalInfo { return { ...this.kb.professional }; }

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