- Home
- MCP servers
- Context Continuation
Context Continuation
- typescript
2
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"core3-coder-context-continue-mcp": {
"command": "context-mcp",
"args": [
"--project",
"/path/to/your/project"
]
}
}
}Context Continuation MCP Server provides intelligent context management for AI development sessions. It helps you track token usage, manage session progress, and restore context across new sessions so you never lose important decisions or milestones due to token limits.
How to use
You use this MCP server with an MCP client to manage and restore context across AI interactions. Start a context session for your project, track important messages and milestones, and monitor token usage as you work. When you begin a new session, you can generate restoration prompts to quickly bring previous context back into focus.
How to install
Prerequisites: ensure you have Node.js and npm installed on your system.
Install the MCP server globally.
npm install -g context-continue-mcp
Configure your MCP client
In your MCP client configuration, reference the local MCP server as a stdio source. Use the following example configuration to connect to the local context-continue MCP server.
{
"mcpServers": {
"context_continue": {
"command": "context-mcp",
"args": ["--project", "/path/to/your/project"]
}
}
}
Start using context tools
Restart your client application after adding the MCP server. Then you can start a new session, track messages, check token usage, and generate restoration prompts as needed.
Available tools
context_start_session
Start tracking a new context session for your project.
context_end_session
End the current session with a concise summary of decisions and milestones.
context_get_status
Retrieve current session status including token usage and progress stats.
context_track_message
Add a message to the active context session for logging and reference.
context_track_progress
Update project progress as milestones or decisions are reached.
context_add_milestone
Record a project milestone to preserve critical decisions and outcomes.
context_restore_session
Generate a restoration prompt to bring previous context into a new session.
context_get_project_summary
Obtain a full overview of the project context and status.