Skip to main content
Glama
fadlee

PocketBase MCP Server

by fadlee
analysis.ts1.25 kB
/** * Tool input schemas for analysis-related operations */ export const analyzeCollectionDataSchema = { type: "object", properties: { collection: { type: "string", description: "Collection name to analyze", }, options: { type: "object", description: "Analysis options", properties: { sampleSize: { type: "number", description: "Number of records to sample for analysis (default: 100)", }, fields: { type: "array", items: { type: "string" }, description: "Specific fields to analyze (if not provided, all fields will be analyzed)", }, }, }, }, required: ["collection"], }; export const queryCollectionSchema = { type: "object", properties: { collection: { type: "string", description: "Collection name", }, filter: { type: "string", description: "Filter expression", }, sort: { type: "string", description: "Sort expression", }, aggregate: { type: "object", description: "Aggregation settings", }, expand: { type: "string", description: "Relations to expand", }, }, required: ["collection"], };

Implementation Reference

Latest Blog Posts

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/fadlee/pocketbase-mcp'

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