@baasix/mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@baasix/mcp",
3
+ "version": "0.1.0",
4
+ "description": "Model Context Protocol (MCP) server for Baasix Backend-as-a-Service - provides 40+ tools for schema management, CRUD operations with 50+ filter operators, relationships, permissions, files, workflows, and more",
5
+ "type": "module",
6
+ "main": "baasix/index.js",
7
+ "files": [
8
+ "baasix/",
9
+ "README.md"
10
+ ],
11
+ "scripts": {
12
+ "start": "dotenv -e .env.production -- tsx server.js",
13
+ "development": "dotenv -e .env -- tsx server.js",
14
+ "dev": "dotenv -e .env -- tsx watch server.js",
15
+ "test": "echo 'Testing MCP server...' && echo '{\"jsonrpc\":\"2.0\",\"method\":\"tools/list\",\"id\":1}' | dotenv -e .env -- tsx server.js",
16
+ "debug": "dotenv -e .env npx @modelcontextprotocol/inspector server.js"
17
+ },
18
+ "dependencies": {
19
+ "@modelcontextprotocol/sdk": "^1.0.3",
20
+ "axios": "^1.6.0",
21
+ "dotenv": "^16.3.0",
22
+ "zod": "^3.23.8"
23
+ },
24
+ "devDependencies": {
25
+ "@modelcontextprotocol/inspector": "^0.1.0",
26
+ "dotenv-cli": "^7.4.4",
27
+ "tsx": "^4.16.0"
28
+ },
29
+ "peerDependencies": {
30
+ "node": ">=18.0.0"
31
+ },
32
+ "engines": {
33
+ "node": ">=18.0.0"
34
+ },
35
+ "keywords": [
36
+ "mcp",
37
+ "model-context-protocol",
38
+ "claude",
39
+ "baasix",
40
+ "baas",
41
+ "backend-as-a-service",
42
+ "rest-api",
43
+ "postgresql",
44
+ "drizzle-orm",
45
+ "headless-cms",
46
+ "api-generator"
47
+ ],
48
+ "author": "Vivek Palanisamy",
49
+ "license": "MIT",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+https://github.com/baasix/baasix.git",
53
+ "directory": "packages/mcp"
54
+ },
55
+ "homepage": "https://www.baasix.com",
56
+ "publishConfig": {
57
+ "access": "public"
58
+ }
59
+ }