UNPKG

bc-symbols-mcp

Version:

MCP server for analyzing Business Central .app files and BC object structures

68 lines (67 loc) 1.71 kB
{ "name": "bc-symbols-mcp", "version": "1.2.4", "description": "MCP server for analyzing Business Central .app files and BC object structures", "type": "module", "main": "dist/server.js", "bin": { "bc-symbols-mcp": "dist/server.js" }, "files": [ "dist/**/*", "README.md", "package.json" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/server.js", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "test-release": "./scripts/test-release.sh", "prepublishOnly": "npm run build", "postinstall": "npm run build" }, "keywords": [ "mcp", "business-central", "dynamics365", "al", "symbols", "model-context-protocol" ], "author": "ThaSiouL", "repository": { "type": "git", "url": "git+https://github.com/ThaSiouL/bc-symbols-mcp.git" }, "homepage": "https://github.com/ThaSiouL/bc-symbols-mcp#readme", "bugs": { "url": "https://github.com/ThaSiouL/bc-symbols-mcp/issues" }, "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "adm-zip": "^0.5.10", "stream-json": "^1.9.1", "xml2js": "^0.6.2" }, "devDependencies": { "@types/adm-zip": "^0.5.5", "@types/jest": "^29.5.0", "@types/node": "^20.10.0", "@types/stream-json": "^1.7.8", "@types/xml2js": "^0.4.14", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.50.0", "jest": "^29.7.0", "prettier": "^3.0.0", "ts-jest": "^29.1.0", "typescript": "^5.3.0" }, "engines": { "node": ">=24.0.0" } }