math-mcp
Version:
MCP server for mathematical expression evaluation with strict grammar validation
21 lines • 672 B
JavaScript
export const resourceDefinitions = [
{
uri: 'math://grammar',
name: 'Mathematical Grammar Specification',
description: 'BNF grammar specification for supported mathematical expressions',
mimeType: 'text/plain',
},
{
uri: 'math://functions',
name: 'Supported Functions',
description: 'List of supported mathematical functions',
mimeType: 'application/json',
},
{
uri: 'math://constants',
name: 'Mathematical Constants',
description: 'List of predefined mathematical constants',
mimeType: 'application/json',
},
];
//# sourceMappingURL=definitions.js.map