Skip to main content
Glama

GameMaker Documentation MCP Server

by Petah
category.js711 B
import BaseCommand from './base-command.js'; class CategoryCommand extends BaseCommand { static register(program) { program .command('category <name>') .description('List functions in a specific category') .action(async (name) => { const command = new CategoryCommand(); await command.execute(name, {}, program.opts()); }); } async execute(name, options, globalOptions) { const docsPath = globalOptions.path; await this.validateDocsPath(docsPath); const cli = await this.initializeCLI(docsPath); await cli.listFunctionsByCategory(name); } } export default CategoryCommand;

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/Petah/gamemaker-mcp'

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