@takashito/linode-mcp-server
Version:
MCP server for Linode API
18 lines (17 loc) • 554 B
TypeScript
import { FastMCP } from 'fastmcp';
import { ToolCategory } from './tools';
export declare const VERSION = "0.2.1";
export interface ServerOptions {
token: string;
enabledCategories?: ToolCategory[];
transport?: 'stdio' | 'sse' | 'http';
port?: number;
host?: string;
endpoint?: string;
}
/**
* Creates and starts a Linode MCP Server
* @param options Server configuration options
* @returns Configured and running MCP server instance
*/
export declare function startServer(options: ServerOptions): Promise<FastMCP<undefined>>;