claude-code-history-mcp
Version:
MCP server for Claude Code conversation history tracking and analysis
65 lines (64 loc) • 1.59 kB
JSON
{
"name": "claude-code-history-mcp",
"version": "1.1.1",
"description": "MCP server for Claude Code conversation history tracking and analysis",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"claude-code-history-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run build && npm run test && npm run lint"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"keywords": [
"claude-code",
"mcp",
"history",
"conversation",
"ai",
"typescript",
"server"
],
"author": "yudppp",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yudppp/claude-code-history-mcp.git"
},
"homepage": "https://github.com/yudppp/claude-code-history-mcp#readme",
"bugs": {
"url": "https://github.com/yudppp/claude-code-history-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
}
}