package.json•1.14 kB
{
"name": "mcp-server-tembo",
"version": "0.0.0",
"description": "A MCP server or the Tembo Cloud platform API",
"repository": {
"type": "git",
"url": "git+https://github.com/Tembo/mcp-server-tembo.git"
},
"license": "MIT",
"author": {
"name": "Darren Baldwin",
"email": "darren@tembo.io"
},
"bin": {
"mcp-server-tembo": "./dist/index.js"
},
"type": "module",
"main": "dist/index.js",
"files": [
"LICENSE.md",
"README.md",
"dist/",
"package.json"
],
"scripts": {
"build": "tsup && chmod +x dist/index.js",
"watch": "tsc-watch --onSuccess \"chmod 755 dist/index.js\"",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@types/node": "22.10.2",
"eslint": "9.17.0",
"lint-staged": "15.3.0",
"prettier": "^3.4.2",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"engines": {
"node": ">=18.3.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"@tembo-io/api-client": "^0.0.10",
"zod": "^3.24.1"
}
}