@dollhousemcp/mcp-server
Version:
DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.
12 lines • 448 B
TypeScript
/**
* Portfolio management tool definitions and handlers
*/
import { ToolDefinition } from '../../handlers/types/ToolTypes.js';
import type { PortfolioHandler } from '../../handlers/PortfolioHandler.js';
type ToolHandler<T> = (args: T) => Promise<any>;
export declare function getPortfolioTools(server: PortfolioHandler): Array<{
tool: ToolDefinition;
handler: ToolHandler<any>;
}>;
export {};
//# sourceMappingURL=PortfolioTools.d.ts.map