askme-cli
Version:
askme-cli MCP server that collects user's next plan or confirmation through terminal window
68 lines (67 loc) • 2.03 kB
JSON
{
"name": "askme-cli",
"version": "1.0.0",
"description": "askme-cli MCP server that collects user's next plan or confirmation through terminal window",
"type": "module",
"main": "dist/mcp-cli-server.js",
"types": "dist/mcp-cli-server.d.ts",
"bin": {
"askme-cli": "./dist/cli.js",
"askme-cli-setup": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build-ui": "tsc && babel --out-dir=dist src",
"build-ui-watch": "tsc --watch & babel --out-dir --watch src",
"start": "npm run build && node dist/mcp-cli-server.js",
"dev": "npm run build && node dist/mcp-cli-server.js",
"test": "npm run build && node dist/test-client.js",
"debug": "node --inspect-brk dist/mcp-cli-server.js",
"debug:ui": "node --inspect-brk dist/ask-me-ui.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"ink": "^4.1.0",
"open": "^10.1.2",
"react": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/node": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@types/node": "^20.10.0",
"@types/open": "^6.1.0",
"@types/react": "^18.2.0",
"tsx": "^4.20.3",
"typescript": "^5.3.0"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"keywords": [
"mcp",
"ask_me",
"terminal",
"askme-cli",
"typescript"
],
"author": "rhyspenn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rhyspenn/askme-cli.git"
},
"bugs": {
"url": "https://github.com/rhyspenn/askme-cli/issues"
},
"homepage": "https://github.com/rhyspenn/askme-cli#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}