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
export const MCP_SERVER_CONFIG = {
name: "Dart MCP Server",
version: "1.0.0",
capabilities: {
'dart-analyze': "Analyze Dart code in a directory",
'dart-compile': "Compile Dart to various formats",
'dart-create': "Create a new Dart project",
'dart-doc': "Generate API documentation for Dart projects",
'dart-fix': "Apply automated fixes to Dart source code",
'dart-format': "Idiomatically format Dart source code",
'dart-info': "Show diagnostic information about the installed tooling",
'dart-package': "Work with packages (pub commands)",
'dart-run': "Run a Dart program",
'dart-test': "Run tests for a project"
},
timeouts: {
global: 300000, // 5 minutes default timeout
tools: {
'dart-run': 300000,
'dart-test': 300000,
'dart-compile': 300000,
'dart-analyze': 300000
}
}
};