Skip to main content
Glama

MCP Server Chart

Official
schema.spec.ts655 B
import { afterEach, describe, expect, it } from "vitest"; import { z } from "zod"; import { zodToJsonSchema } from "../../src/utils/schema"; describe("schema", () => { it("default vis request server", () => { expect( zodToJsonSchema({ a: z.number(), b: z.string(), c: z.boolean(), }), ).toEqual({ $schema: "http://json-schema.org/draft-07/schema#", properties: { a: { type: "number", }, b: { type: "string", }, c: { type: "boolean", }, }, required: ["a", "b", "c"], type: "object", }); }); });

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/antvis/mcp-server-chart'

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