Claudecode Session Notes — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Claudecode Session Notes (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A production-ready Model Context Protocol (MCP) server for comprehensive ClaudeCode session workbook collection and analysis. Built with FastMCP 2.0 for maximum performance and reliability.
Built on FastMCP 2.0 with modern Python practices:
.claude/session-notes/ hierarchy# Clone the repository
git clone https://github.com/Claire-s-Monster/claudecode-session-notes.git
cd claudecode-session-notes
# Install with PIXI
pixi install
# Start the MCP server
pixi run server# Clone and install
git clone https://github.com/Claire-s-Monster/claudecode-session-notes.git
cd claudecode-session-notes
# Install in editable mode
pip install -e .
# Start the MCP server
python -m session_notes.server#### Recommended (PIXI - Production Ready) Add to your ~/.claude_desktop_config.json:
{
"mcpServers": {
"session-notes": {
"command": "pixi",
"args": ["run", "-e", "quality", "server"],
"cwd": "/path/to/claudecode-session-notes"
}
}
}#### Alternative Configurations
Development Mode (with debug logging):
{
"mcpServers": {
"session-notes": {
"command": "pixi",
"args": ["run", "-e", "quality", "server"],
"cwd": "/path/to/claudecode-session-notes",
"env": {
"PYTHONPATH": "src",
"CLAUDE_DEBUG": "1"
}
}
}
}Minimal Runtime (fastest startup):
{
"mcpServers": {
"session-notes": {
"command": "pixi",
"args": ["run", "server"],
"cwd": "/path/to/claudecode-session-notes"
}
}
}Legacy Python (fallback option):
{
"mcpServers": {
"session-notes": {
"command": "python",
"args": ["-m", "session_notes.server"],
"cwd": "/path/to/claudecode-session-notes"
}
}
}💡 Why PIXI? Using PIXI commands ensures reproducible environments, exact dependency versions from pixi.lock, and optimal FastMCP 2.0 integration with conda-forge packages.| Tool | Description |
|---|---|
start_session | Begin tracking a new development session |
end_session | End session with metrics calculation |
update_session_metadata | Update session attributes dynamically |
get_session_status | Retrieve real-time session information |
register_agent | Register an AI agent in the session |
get_agent_metadata | Get comprehensive agent statistics |
log_agent_execution | Record agent actions and results |
log_tool_request | Track tool usage and availability |
log_agent_interaction | Record complex agent behaviors |
analyze_missing_tools | Identify missing tool patterns |
save_missing_tools_report | Generate missing tools analysis |
# Start a session
start_session("my-dev-session")
# Register an agent
register_agent(
session_id="my-dev-session",
agent_type="code-reviewer",
purpose="Review and analyze code quality"
)
# Log agent activity
log_agent_execution(
session_id="my-dev-session",
agent_id="agent-uuid",
agent_type="code-reviewer",
action="analyze_code",
parameters={"file": "main.py"},
result={"issues": 2, "score": 8.5}
)
# End session with metrics
end_session("my-dev-session", outcome="completed")This project maintains production-grade quality standards:
# Install development environment
pixi install -e quality
# Run tests (100% pass rate)
pixi run test
# Run with coverage
pixi run test-cov
# Quality checks
pixi run lint # Critical violations check
pixi run typecheck # Type safety validation
pixi run quality # Full quality pipeline
# Run the server in development
pixi run devclaudecode-session-notes/
├── src/session_notes/
│ ├── __init__.py
│ └── server.py # Main MCP server implementation
├── tests/ # Comprehensive test suite (285 tests)
├── docs/ # Documentation
├── pyproject.toml # PIXI configuration & dependencies
├── .claude/ # Claude integration
└── README.md # This fileSession data is stored in a structured hierarchy under .claude/session-notes/:
.claude/session-notes/
├── {session-id}/
│ ├── session.json # Session metadata & metrics
│ ├── missing_tools.json # Missing tools analysis
│ └── agents/
│ └── {agent-id}/
│ ├── metadata.json # Agent registration info
│ ├── execution.json # Action logs
│ ├── tools.json # Tool usage logs
│ └── interactions.json # Behavioral dataWe welcome contributions! This project has achieved 100% test pass rate and maintains high quality standards.
git checkout -b feature/amazing-featurepixi run quality before committingpixi run test)pixi run lint)pixi run typecheck)pixi run test-cov)This project is licensed under the MIT License - see the LICENSE file for details.
Ready to supercharge your ClaudeCode development sessions with comprehensive analytics and insights! 🚀
For questions or support, please open an issue on GitHub.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.