agentcortex
Version:
AgentCortex MCP Client - AI memory and task management for Claude, Cursor, and Windsurf. Connects to AgentCortex Cloud.
60 lines • 1.46 kB
JSON
{
"name": "agentcortex",
"version": "1.0.4",
"description": "AgentCortex MCP Client - AI memory and task management for Claude, Cursor, and Windsurf. Connects to AgentCortex Cloud.",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"agentcortex": "./dist/src/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
".env.example",
"examples"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/src/index.js",
"lint": "echo 'Linting passed - no linter configured'",
"test": "vitest run test/*.test.ts",
"test:watch": "vitest watch test/*.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"ai",
"memory",
"task-management",
"claude",
"cursor",
"windsurf"
],
"author": "AgentCortex Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sage-hq/agentcortex-mcp.git"
},
"homepage": "https://agentcortex.dev",
"bugs": {
"url": "https://github.com/sage-hq/agentcortex-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"node-fetch": "^3.3.2",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/node-fetch": "^2.6.11",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"msw": "^2.6.5"
}
}