UNPKG

mcp-quickbase

Version:

Work with Quickbase via Model Context Protocol

15 lines (14 loc) 946 B
import { QuickbaseClient } from "../../client/quickbase"; /** * Register all relationship management tools with the registry * @param client Quickbase client */ export declare function registerRelationshipTools(client: QuickbaseClient): void; export { GetRelationshipsTool } from "./get_relationships"; export type { GetRelationshipsParams, GetRelationshipsResult, Relationship, RelationshipFieldInfo, } from "./get_relationships"; export { CreateRelationshipTool } from "./create_relationship"; export type { CreateRelationshipParams, CreateRelationshipResult, SummaryAccumulationType, } from "./create_relationship"; export { UpdateRelationshipTool } from "./update_relationship"; export type { UpdateRelationshipParams, UpdateRelationshipResult, } from "./update_relationship"; export { DeleteRelationshipTool } from "./delete_relationship"; export type { DeleteRelationshipParams, DeleteRelationshipResult, } from "./delete_relationship";