npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@oneqode/session-mcp

v1.0.0

Published

Session MCP for Cracked Jacked Claude - Manages session state, progress tracking, and multi-agent coordination

Readme

Session MCP 🗂️

The Session MCP (Model Context Protocol) server manages session state, progress tracking, and multi-agent coordination for the Cracked Jacked Claude framework.

Features

  • Session Management: Start, end, and track development sessions
  • Progress Tracking: Log task progress with evidence
  • Decision Recording: Document architectural and technical decisions
  • Multi-Agent Support: Track sessions across multiple agents
  • Handoff Preparation: Prepare context for session transitions

Installation

# Global installation
npm install -g @oneqode/session-mcp

# Or use via npx
npx @oneqode/session-mcp

Usage with Claude

Add to your .claude.json:

{
  "mcpServers": {
    "session": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@oneqode/session-mcp@latest"],
      "description": "Session state management and progress tracking"
    }
  }
}

Available Tools

start_session

Start a new development session.

session.start_session({
  project_name: "my-project",
  session_type: "development",
  agent_id: "agent-1"
})

end_session

End the current session with a summary.

session.end_session({
  summary: "Implemented user authentication with JWT",
  next_steps: [
    "Add refresh token rotation",
    "Implement password reset flow",
    "Add 2FA support"
  ]
})

log_progress

Log progress on a task.

session.log_progress({
  task_id: "task-123",
  status: "completed",
  details: "Implemented JWT authentication with tests",
  evidence: [
    "screenshots/auth-flow.png",
    "test-results/auth.test.js"
  ]
})

log_decision

Record an architectural or technical decision.

session.log_decision({
  decision: "Use JWT for authentication",
  rationale: "Stateless, scalable, and well-supported",
  alternatives: ["Session-based auth", "OAuth2"],
  impact: "Requires token refresh mechanism"
})

get_session_state

Get the current session state.

session.get_session_state()
// Or specific session:
session.get_session_state({ session_id: "abc123" })

get_session_history

Get recent session history.

session.get_session_history({
  limit: 10,
  project_name: "my-project"
})

prepare_handoff

Prepare a handoff summary for the next session.

session.prepare_handoff()
// Returns current session, recent sessions, active tasks, and recent decisions

Session Types

  • development: General development work
  • debugging: Debugging and troubleshooting
  • planning: Project planning and architecture
  • review: Code review and refactoring

Storage

Sessions are stored in ~/.session-mcp/sessions.json as a JSON file for simplicity and portability.

Multi-Agent Coordination

When multiple agents are working on the same project, each can have its own session with an agent_id. The system tracks:

  • Which agent worked on what
  • Task handoffs between agents
  • Parallel work streams

Development

# Install dependencies
npm install

# Build
npm run build

# Development mode
npm run dev

License

MIT © OneQode