We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kevinuehara/mcp-articles-example'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
types.ts•382 B
import { z } from "zod";
export const getArticlesSchema = z.object({
tags: z.string().describe("The tag to search on dev.to api"),
quantity: z
.number()
.optional()
.default(5)
.describe("The number of articles to return"),
});
export const getArticlesByUserNameSchema = z.object({
userName: z.string().describe("The user name to search on dev.to api"),
});