@seliseblocks/mcp-server
Version:
A Model Context Protocol (MCP) server for managing schemas in SELISE Blocks platform, built with TypeScript.
65 lines • 1.66 kB
JSON
{
"name": "@seliseblocks/mcp-server",
"version": "0.0.15",
"description": "A Model Context Protocol (MCP) server for managing schemas in SELISE Blocks platform, built with TypeScript.",
"files": [
"dist/",
"bin/",
"README.md"
],
"bin": {
"blocks-mcp-server": "./bin/blocks-mcp-server.js"
},
"main": "./dist/index.js",
"type": "module",
"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",
"zod": "^3.22.4"
},
"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",
"blocks"
],
"author": "SELISE Blocks",
"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"
},
{
"name": "generate_react_module",
"description": "Generate a React module based on the schema"
}
]
}
}