
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@oneqode/session-mcp
Advanced tools
Session MCP for Cracked Jacked Claude - Manages session state, progress tracking, and multi-agent coordination
The Session MCP (Model Context Protocol) server manages session state, progress tracking, and multi-agent coordination for the Cracked Jacked Claude framework.
# Global installation
npm install -g @oneqode/session-mcp
# Or use via npx
npx @oneqode/session-mcp
Add to your .claude.json:
{
"mcpServers": {
"session": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@oneqode/session-mcp@latest"],
"description": "Session state management and progress tracking"
}
}
}
Start a new development session.
session.start_session({
project_name: "my-project",
session_type: "development",
agent_id: "agent-1"
})
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 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"
]
})
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 the current session state.
session.get_session_state()
// Or specific session:
session.get_session_state({ session_id: "abc123" })
Get recent session history.
session.get_session_history({
limit: 10,
project_name: "my-project"
})
Prepare a handoff summary for the next session.
session.prepare_handoff()
// Returns current session, recent sessions, active tasks, and recent decisions
Sessions are stored in ~/.session-mcp/sessions.json as a JSON file for simplicity and portability.
When multiple agents are working on the same project, each can have its own session with an agent_id. The system tracks:
# Install dependencies
npm install
# Build
npm run build
# Development mode
npm run dev
MIT © OneQode
FAQs
Session MCP for Cracked Jacked Claude - Manages session state, progress tracking, and multi-agent coordination
We found that @oneqode/session-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.