Skip to main content
Glama

Plainly Videos MCP Server

smithery.ts549 B
import { z } from "zod"; import { PlainlyMcpServer } from "./server"; import env from "./env"; import { createApiClient } from "./axiosConfig"; export default function createServer({ config, }: { config: z.infer<typeof configSchema>; }) { const apiClient = createApiClient({ baseUrl: env.PLAINLY_API_URL, apiKey: config.apiKey, }); const plainlyServer = new PlainlyMcpServer(apiClient); return plainlyServer.mcpServer.server; } export const configSchema = z.object({ apiKey: z.string().describe("Your Plainly API key."), });

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/plainly-videos/mcp-server'

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