MCP server with 12 tools across 4 groups: - Catalog: list/create/update/delete products - Inventory: check stock, record intake/usage, low stock alerts - Recipes: list and create recipes with ingredients - Analytics: popular items, cost analysis Uses @modelcontextprotocol/sdk with stdio transport for Claude Code integration. Connects to catalog-service, inventory-service, fnb-engine via REST APIs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
450 B
JSON
20 lines
450 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|