random-tables-mcp
Version:
An MCP (Model Context Protocol) server for managing and rolling on random-table assets used in tabletop RPGs. Create, update, and roll on random tables with support for nested tables, weighted entries, and range-based results.
59 lines (58 loc) • 1.64 kB
TypeScript
import { z } from 'zod';
import { RollTemplateService } from '../../../../ports/index.js';
import { BaseTool } from './tool.js';
/**
* Input type for the create template tool.
*/
type CreateTemplateInput = {
name: string;
description?: string;
template: string;
};
/**
* Output type for the create template tool.
*/
type CreateTemplateOutput = {
templateId: string;
name: string;
description: string;
template: string;
};
/**
* Tool for creating a new roll template.
*/
export declare class CreateTemplateTool extends BaseTool<CreateTemplateInput, CreateTemplateOutput> {
private readonly templateService;
/**
* Creates a new CreateTemplateTool instance.
* @param templateService The template service to use.
*/
constructor(templateService: RollTemplateService);
/**
* Gets the name of the tool.
* @returns The tool name.
*/
protected getToolName(): string;
/**
* Gets the description of the tool.
* @returns The tool description.
*/
protected getToolDescription(): string;
/**
* Gets the input schema for the tool.
* @returns The input schema.
*/
protected getInputSchema(): z.ZodType<CreateTemplateInput>;
/**
* Gets the output schema for the tool.
* @returns The output schema.
*/
protected getOutputSchema(): z.ZodType<CreateTemplateOutput>;
/**
* Implements the tool execution logic.
* @param args The validated tool arguments.
* @returns The tool result.
*/
protected executeImpl(args: CreateTemplateInput): Promise<CreateTemplateOutput>;
}
export {};