Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds MCP Toolz to the Docker MCP registry - a server for context management and todo persistence for Claude Code with AI feedback from ChatGPT, Claude, Gemini, and DeepSeek.
Server Details
mcp/mcp-toolzFeatures
Context Management
Todo Persistence
AI Feedback
MCP Resources
mcp-toolz://contexts/project/recent- Recent contexts for current projectmcp-toolz://contexts/project/sessions- List of recent sessionsmcp-toolz://todos/recent- Recent todo snapshotsmcp-toolz://todos/active- Active todo snapshot for current projectTools Provided
Context Tools (5):
context_save- Save a new context entrycontext_list- List recent contextscontext_search- Search contexts by query/tagscontext_get- Get full context details by IDcontext_delete- Delete a contextTodo Tools (6):
todo_save- Save a new todo snapshottodo_list- List recent todo snapshotstodo_search- Search todo snapshotstodo_get- Get full todo snapshot detailstodo_restore- Restore a todo snapshottodo_delete- Delete a todo snapshotAI Feedback Tools (4):
ask_chatgpt- Get ChatGPT's opinion on a contextask_claude- Get Claude's opinion on a contextask_gemini- Get Gemini's opinion on a contextask_deepseek- Get DeepSeek's opinion on a contextTotal: 15 tools
Configuration
Optional environment variables:
MCP_TOOLS_DB_PATH- Database path (default:/home/app/.mcp-toolz/contexts.db)OPENAI_API_KEY- For ChatGPT feedback (optional)ANTHROPIC_API_KEY- For Claude feedback (optional)GOOGLE_API_KEY- For Gemini feedback (optional)DEEPSEEK_API_KEY- For DeepSeek feedback (optional)MCP_TOOLS_MODEL- OpenAI model to use (default:gpt-5)MCP_TOOLS_CLAUDE_MODEL- Anthropic model to use (default:claude-sonnet-4-5-20250929)MCP_TOOLS_GEMINI_MODEL- Google model to use (default:gemini-2.0-flash-thinking-exp-01-21)MCP_TOOLS_DEEPSEEK_MODEL- DeepSeek model to use (default:deepseek-chat)Testing
License
MIT License
Checklist
server.yamlwith all required fieldstools.jsonwith all 15 toolsPart of taylorleese/mcp-toolz#11 - Publishing MCP Toolz to official registries and community directories.
Related PRs: