Skip to main content
Glama
create-task-list.ts449 B
import { z } from "zod" import { tasks } from "../client.ts" export const createTaskListInputSchema = z.object({ title: z.string().describe("Title of the new task list") }) export type CreateTaskListInput = z.infer<typeof createTaskListInputSchema> export async function createTaskList(args: CreateTaskListInput) { const response = await tasks.tasklists.insert({ requestBody: { title: args.title } }) return response.data }

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/itsregularjohn/mcps'

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