mcp-server-blk
Version:
MCP server for managing blocks schemas via API
60 lines • 1.44 kB
JSON
{
"name": "mcp-server-blk",
"version": "0.0.1",
"description": "MCP server for managing blocks schemas via API",
"files": [
"dist/",
"bin/",
"README.md"
],
"bin": {
"mcp-server-blk": "./bin/mcp-server-blk.js"
},
"main": "./dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "npm run build && node ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"debug": "npm run build && node --inspect-brk ./dist/index.js",
"clean": "rm -rf dist",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.2.0"
},
"engines": {
"node": ">=20"
},
"keywords": [
"mcp",
"model-context-protocol",
"schema-management",
"database"
],
"author": "Your Name",
"license": "MIT",
"mcp": {
"tools": [
{
"name": "create_schema",
"description": "Create a new database schema with field definitions"
},
{
"name": "update_schema",
"description": "Update an existing database schema with new field definitions"
}
]
}
}