We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BlinkZer0/Phys-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* JSON Schema definitions for Report tools
*/
export const ReportGenerateSchema = {
type: "object",
properties: {
session_id: { type: "string", description: "Target session ID to summarize" },
format: { type: "string", enum: ["markdown"], default: "markdown" },
title: { type: "string", description: "Report title" },
author: { type: "string", description: "Author name(s)" },
include: {
type: "array",
items: { type: "string", enum: ["cas", "plots", "constants", "units", "events", "artifacts"] },
description: "Sections to include in the report"
}
},
required: ["session_id"],
};