@toriihq/torii-mcp
Version:
Model Context Protocol server for Torii API
21 lines (20 loc) • 417 B
TypeScript
export type GetAppParams = {
id: number;
fields?: string;
version?: "1.0" | "1.1";
};
export type SearchAppsParams = {
query: string;
limit?: number;
};
export type AppData = {
name: string;
url?: string;
category?: string;
description?: string;
};
export type FieldData = {
name: string;
type: "text" | "number" | "boolean" | "date" | "select";
options?: string[];
};