package.json•1.76 kB
{
"name": "mcp-content-engineering",
"version": "1.0.0",
"description": "A simplified Model Context Protocol (MCP) server for raw Markdown content access without processing or parsing",
"type": "module",
"main": "dist/server.js",
"bin": {
"mcp-content-engineering": "./dist/server.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"start": "ts-node src/server.ts",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && jest",
"prepare": "npm run build",
"dev": "nodemon src/server.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"markdown",
"raw-content",
"content-access",
"documentation",
"business-rules",
"knowledge-base",
"ai-tools",
"typescript",
"nodejs",
"claude",
"claude-desktop",
"cursor-ide",
"anthropic",
"llm-integration",
"cli-tool",
"npm-package"
],
"author": "hendrickcastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hendrickcastro/MCPContentEngineering.git"
},
"homepage": "https://github.com/hendrickcastro/MCPContentEngineering",
"bugs": {
"url": "https://github.com/hendrickcastro/MCPContentEngineering/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.13.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@types/fs-extra": "^11.0.4",
"jest": "^30.0.2",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}