Skip to main content
Glama
TonyBro
by TonyBro

update_game_knowledge

Research and update knowledge about game development best practices and technologies to maintain current expertise.

Instructions

Update knowledge about game development best practices and technologies

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topicsYesTopics to research and update knowledge about

Implementation Reference

  • The handler function for `update_game_knowledge` tool which delegates the logic to `gameTemplateService.updateKnowledge`.
    async updateGameKnowledge(args) {
      try {
        // This would integrate with documentation services
        const updates = await this.gameTemplateService.updateKnowledge(args.topics);
        return {
          content: [
            {
              type: 'text',
              text: `Knowledge updated for topics: ${args.topics.join(', ')}`,
            },
          ],
        };
      } catch (error) {
        return {
          content: [
            {
              type: 'text',
              text: `Error updating knowledge: ${error.message}`,
            },
          ],
        };
      }
    }
  • Tool registration and input schema definition for `update_game_knowledge`.
    {
      name: 'update_game_knowledge',
      description: 'Update knowledge about game development best practices and technologies',
      inputSchema: {
        type: 'object',
        properties: {
          topics: {
            type: 'array',
            items: {
              type: 'string',
            },
            description: 'Topics to research and update knowledge about',
          },
        },
        required: ['topics'],
      },
    },

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/TonyBro/MCP_Game'

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