Context Manager MCP Server
コンテキストマネージャーMCPサーバー
開発コンテキストとワークフローを管理するためのモデル コンテキスト プロトコル (MCP) サーバー実装。
特徴
信頼性の高いメッセージフレーミングを備えたソケットベースのトランスポート
JSON-RPC 2.0プロトコルの完全サポート
機能ネゴシエーションによるセッション管理
拡張可能なツールレジストリシステム
プロジェクト、作業パッケージ、タスク管理
チェックポイントと復元機能
QAレビューワークフローのサポート
Related MCP server: PAELLADOC
初期設定
# Install dependencies
npm install
# First-time build
npm run build使用法
サーバーの起動
# Development mode (no build required, uses tsx for on-the-fly compilation)
npm run dev
# Production mode (requires build)
npm start
# Start with debug logging
DEBUG=1 npm run dev
# Start on specific port
MCP_PORT=44558 npm run dev開発モード
# Run with hot reloading (preferred during development)
npm run dev
# Watch mode for TypeScript compilation (if you prefer running the compiled version)
npm run watch
# In a separate terminal when using watch mode
npm startクリーンスタート
問題が発生した場合は、クリーン ビルドを試すことができます。
# Remove build artifacts
rm -rf dist/
# Reinstall dependencies
npm ci
# Rebuild the project
npm run build
# Start in development mode
npm run dev建築
コアコンポーネント
メッセージフレーミング
コンテンツ長ベースのプロトコル
信頼性の高いメッセージ境界処理
バッファ管理
トランスポート層
TCPソケットベースの通信
接続管理
イベント駆動型アーキテクチャ
セッション管理
クライアントセッションの追跡
能力交渉
状態の永続性
ツールレジストリ
動的ツール登録
入力検証
結果のフォーマット
ツール
プロジェクト管理
プロジェクトの作成/取得
プロジェクトチェックポイント
国家の回復
作業パッケージ管理
作業パッケージの作成/取得
進捗状況の追跡
ステータスの更新
タスク管理
タスクの作成/更新
ファイル変更追跡
タスクのチェックポイント
QAツール
レビューワークフロー
修正リクエスト
作業パッケージの承認
構成
環境変数:
DEBUG: デバッグログを有効にする (0/1)MCP_PORT: サーバーポート (デフォルト: 44557)
プロトコル
サーバーは JSON-RPC 2.0 を使用してモデル コンテキスト プロトコルを実装します。
interface MCPMessage {
jsonrpc: "2.0";
id: number;
method?: string; // for requests
params?: any; // for requests
result?: any; // for responses
error?: { // for error responses
code: number;
message: string;
data?: any;
};
}メッセージフロー
クライアントはTCP経由で接続します
クライアントが初期化要求を送信する
サーバーは機能で応答します
通常のメッセージ交換が始まる
クライアントはシャットダウン/終了できます
発達
貢献
リポジトリをフォークする
機能ブランチを作成する
変更をコミットする
ブランチにプッシュする
プルリクエストを作成する
ライセンス
ISCライセンス
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server providing comprehensive task management capabilities with support for project organization, task tracking, and automatic PRD parsing into actionable items.37MIT
- AlicenseNot gradedqualityFmaintenanceA Model Context Protocol (MCP) server that implements AI-First Development framework principles, allowing LLMs to interact with context-first documentation tools and workflows for preserving knowledge and intent alongside code.339AGPL 3.0
- AlicenseBqualityDmaintenanceA Model Context Protocol server providing AI assistants with comprehensive project, task, and subtask management capabilities with project-specific storage.293988MIT
- FlicenseNot gradedqualityDmaintenanceA server implementation of the Model Context Protocol (MCP) that provides REST API endpoints for managing and interacting with MCP resources.
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for generating rough-draft project plans from natural-language prompts.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docherty/contextmgr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server