We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zhr7777777/echarts-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from "zod";
const TitleSchema = z
.object({
text: z
.string()
.optional()
.describe("The main title text, supporting for \n for newlines."),
subtext: z
.string()
.optional()
.describe("Subtitle text, supporting for \n for newlines."),
left: z
.enum(["left", "center", "right"])
.default("center")
.describe(
"Distance between title component and the top side of the container.",
),
})
.describe("Title component, including main title and subtitle.");
export default TitleSchema;