Skip to main content
Glama

GameMaker Documentation MCP Server

by Petah
file.js709 B
import BaseCommand from './base-command.js'; class FileCommand extends BaseCommand { static register(program) { program .command('file <path>') .description('Get the content of a specific markdown file') .action(async (filePath) => { const command = new FileCommand(); await command.execute(filePath, {}, program.opts()); }); } async execute(filePath, options, globalOptions) { const docsPath = globalOptions.path; await this.validateDocsPath(docsPath); const cli = await this.initializeCLI(docsPath); await cli.getMarkdownFile(filePath); } } export default FileCommand;

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