Skip to main content
Glama

DollhouseMCP

by DollhouseMCP
BuildInfoTools.tsโ€ข959 B
/** * BuildInfoTools - MCP tools for retrieving build and runtime information */ import { IToolHandler } from '../types.js'; import { BuildInfoService } from '../../services/BuildInfoService.js'; /** * Get build info tools */ export function getBuildInfoTools(_server: IToolHandler) { const buildInfoService = BuildInfoService.getInstance(); return [ { tool: { name: 'get_build_info', description: 'Get comprehensive build and runtime information about the server', inputSchema: { type: 'object' as const, properties: {}, required: [] } }, handler: async () => { const info = await buildInfoService.getBuildInfo(); const formattedInfo = buildInfoService.formatBuildInfo(info); return { content: [ { type: "text", text: formattedInfo } ] }; } } ]; }

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/DollhouseMCP/DollhouseMCP'

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