initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-10-11 03:22:03 +02:00
commit 2f8e4dec54
Se han modificado 35 ficheros con 11905 adiciones y 0 borrados

72
package.json Archivo normal
Ver fichero

@@ -0,0 +1,72 @@
{
"name": "@mcp/procfs-server",
"version": "1.0.0",
"description": "MCP server for reading and modifying Linux procfs values with JSON-RPC and SSE support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-procfs": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"start:sse": "node dist/server-sse.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"docs": "typedoc --out docs src"
},
"keywords": [
"mcp",
"model-context-protocol",
"procfs",
"linux",
"system-monitoring",
"json-rpc",
"sse",
"server-sent-events"
],
"author": "MCP Contributors",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"express": "^4.18.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typedoc": "^0.25.6",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/cameronrye/activitypub-mcp.git",
"directory": "mcp-proc"
},
"bugs": {
"url": "https://github.com/cameronrye/activitypub-mcp/issues"
},
"homepage": "https://github.com/cameronrye/activitypub-mcp/tree/master/mcp-proc#readme"
}