We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/keyurgolani/ThoughtMcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "thoughtmcp",
"version": "0.5.0",
"description": "AI that thinks more like humans do - MCP server with human-like cognitive architecture for enhanced reasoning, memory, and self-monitoring",
"main": "dist/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./monitoring": {
"import": "./dist/monitoring/index.js",
"types": "./dist/monitoring/index.d.ts"
},
"./security": {
"import": "./dist/security/index.js",
"types": "./dist/security/index.d.ts"
}
},
"bin": {
"thoughtmcp": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"dev": "tsx src/index.ts",
"dev:docker": "npm run docker:up:dev && npm run dev",
"docker:up:dev": "docker compose -f docker-compose.dev.yml up -d --wait",
"docker:up:test": "docker compose -f docker-compose.test.yml up -d --wait",
"docker:up:prod": "docker compose -f docker-compose.prod.yml up -d --wait",
"docker:down": "docker compose -f docker-compose.dev.yml down && docker compose -f docker-compose.test.yml down",
"docker:down:volumes": "docker compose -f docker-compose.dev.yml down -v && docker compose -f docker-compose.test.yml down -v",
"docker:logs": "docker compose -f docker-compose.dev.yml logs -f",
"docker:logs:dev": "docker compose -f docker-compose.dev.yml logs -f",
"docker:logs:test": "docker compose -f docker-compose.test.yml logs -f",
"prebuild": "npm run format && npm run validate && npm run clean",
"build": "npm run build:types && npm run build:bundle",
"build:types": "tsc --emitDeclarationOnly",
"build:bundle": "node scripts/build.mjs && chmod +x dist/index.js",
"build:quick": "npm run clean && npm run build:types && npm run build:bundle",
"build:watch": "tsc --watch",
"clean": "rm -rf dist development/reports/coverage .vitest",
"audit:check": "npm audit --audit-level=moderate --omit=dev || (echo '❌ Security vulnerabilities found. Run: npm audit fix' && exit 1)",
"test": "vitest run",
"test:unit": "vitest run src/__tests__/unit",
"test:integration": "vitest run src/__tests__/integration",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:qa": "npm run test && npm run test:e2e",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:setup": "bash scripts/db/migrate.sh setup",
"db:migrate": "tsx scripts/migrate.ts up",
"db:status": "tsx scripts/migrate.ts status",
"db:reset": "bash scripts/db/migrate.sh reset",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"lint:strict": "eslint \"src/**/*.ts\" --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit",
"type-check": "tsc --noEmit",
"check:any": "! grep -r --include='*.ts' -E ': any|as any|any\\[\\]|<any>' src/ --exclude-dir=__tests__ || echo 'No forbidden any types found'",
"check:debug": "! grep -r --include='*.ts' -E 'console\\.(log|debug|info)|debugger' src/ --exclude-dir=__tests__ --exclude-dir=server --exclude='logger.ts' --exclude='MonitoringDashboard.ts' --exclude='PerformanceMonitor.ts' --exclude='config.ts' --exclude='version.ts' || echo 'No debug statements found'",
"validate": "npm run audit:check && npm run format:check && npm run lint && npm run typecheck && npm run validate:git && npm run test:unit",
"validate:ci": "npm run audit:check && npm run format:check && npm run lint:strict && npm run typecheck && npm run test:coverage",
"validate:git": "bash scripts/validate-git-tracking.sh",
"validate:gitignore": "bash scripts/validate-gitignore.sh",
"validate:ci-sim": "bash scripts/validate-ci-sim.sh",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"start:debug": "LOG_LEVEL=DEBUG node dist/index.js",
"config:validate": "tsx scripts/validate-config.ts",
"prepublishOnly": "npm run validate:ci && npm run build"
},
"keywords": [
"mcp",
"cognitive",
"ai",
"reasoning",
"neuroscience",
"memory",
"metacognition",
"dual-process",
"human-like",
"thinking",
"claude",
"kiro",
"cursor"
],
"repository": {
"type": "git",
"url": "https://github.com/keyurgolani/ThoughtMcp.git"
},
"bugs": {
"url": "https://github.com/keyurgolani/ThoughtMcp/issues"
},
"homepage": "https://github.com/keyurgolani/ThoughtMcp#readme",
"author": {
"name": "Keyur Golani",
"email": "keyurrgolani@gmail.com",
"url": "https://github.com/keyurgolani"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"pg": "^8.16.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/express": "^5.0.6",
"@types/helmet": "^0.0.48",
"@types/node": "^20.0.0",
"@types/pg": "^8.15.6",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"esbuild": "^0.27.0",
"eslint": "^9.0.0",
"fast-check": "^4.4.0",
"globals": "^16.4.0",
"husky": "^9.0.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}