Add LogicSRC standards MCP server

This commit is contained in:
Anthony Ettinger 2026-06-06 14:22:43 +00:00
parent 4e4c78140d
commit dd150f391a
26 changed files with 2250 additions and 15 deletions

View file

@ -0,0 +1,23 @@
{
"name": "@profullstack/logicsrc-mcp",
"version": "0.1.0",
"description": "MCP server for LogicSRC standards, schemas, prompts, and validators.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"logicsrc-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run src"
},
"dependencies": {
"@logicsrc/validators": "file:../validators",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.1.13"
},
"devDependencies": {
"vitest": "^4.0.8"
}
}