@cheqd/mcp-toolkit-server
Version:
MCP Toolkit Server for cheqd
49 lines (48 loc) • 1.2 kB
JSON
{
"name": "@cheqd/mcp-toolkit-server",
"version": "1.4.0",
"packageManager": "pnpm@9.1.3",
"description": "MCP Toolkit Server for cheqd",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"license": "Apache-2.0",
"main": "./build/server.js",
"module": "./build/server.js",
"types": "./build/server.d.ts",
"type": "module",
"bin": {
"cheqd-mcp-toolkit-server": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/*.js",
"start": "node build/index.js",
"watch": "tsc --watch",
"clean": "rm -rf ./build",
"format": "prettier --config ../../.prettierrc.json --write '{src,tests}/**/*.{js,ts,cjs,mjs,json}'",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"cheqd",
"mcp-toolkit",
"mcp"
],
"dependencies": {
"@cheqd/mcp-toolkit-credo": "1.5.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.56"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}