ken-you-think
Version:
A single-tool MCP that guides coding agents through implementation thinking - TypeScript edition
46 lines • 1.2 kB
JSON
{
"name": "ken-you-think",
"version": "3.0.0",
"description": "A single-tool MCP that guides coding agents through implementation thinking - TypeScript edition",
"type": "module",
"main": "./build/index.js",
"bin": {
"ken-you-think": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"const fs=require('fs'); const f='./build/index.js'; const content=fs.readFileSync(f,'utf8'); if(!content.startsWith('#!/usr/bin/env node')) fs.writeFileSync(f,'#!/usr/bin/env node\\n'+content); fs.chmodSync(f,'755')\"",
"watch": "tsc --watch",
"start": "node ./build/index.js",
"dev": "tsx watch src/index.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"claude",
"thinking",
"metacognition",
"vibe-coding",
"coding-agent",
"implementation-thinking"
],
"author": "Ken",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3",
"tsx": "^4.7.1"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"build/",
"README.md"
],
"preferGlobal": true
}