Skip to main content
Glama

Dart MCP Server

by egyleader
info.ts482 B
import { z } from 'zod'; import { executeDartCommand } from '../utils/dart-executor.js'; export const infoSchema = z.object({ options: z.array(z.string()).optional().describe('Additional info options') }); export async function info({ options = [] }: z.infer<typeof infoSchema>) { const { stdout, stderr } = await executeDartCommand('info', options); return { content: [ { type: "text" as const, text: stdout || stderr } ], isError: !!stderr }; }

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/egyleader/dart-mcp'

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