Skip to main content
Glama

kb_get_professional

Retrieve professional information and work details from persistent knowledge storage to provide AI agents with context about your career, skills, and organizational data.

Instructions

Get professional information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:216-222 (registration)
    Tool registration and input schema definition for kb_get_professional in the tools list used for MCP tool listing.
    name: 'kb_get_professional', description: 'Get professional information', inputSchema: { type: 'object', properties: {} } },
  • Main execution handler for kb_get_professional tool. Delegates to KnowledgeManager.getProfessional() and formats the response as MCP content.
    case 'kb_get_professional': { return { content: [ { type: 'text', text: JSON.stringify(km.getProfessional(), null, 2) } ] }; }
  • Core helper method that returns a copy of the professional information stored in the knowledge base.
    getProfessional(): ProfessionalInfo { return { ...this.kb.professional }; }
  • TypeScript interface defining the structure of professional information data returned by the tool.
    export interface ProfessionalInfo { occupation?: string; yearsOfExperience?: number; industry?: string; specializations?: string[]; currentCompany?: string; role?: string; skills?: string[]; certifications?: string[]; education?: string[]; }

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