scratchpad-tool
README.md
# Scratchpad Tool MCP Server
[](https://www.npmjs.com/package/scratchpad-tool)
A Model Context Protocol server that provides a scratchpad tool for LLMs to organize thoughts, take notes, and plan approaches to complex problems.
## API
### Tools
- **scratchpad**
- Use the scratchpad to write notes, organize your thoughts, and plan steps to help you think through the user's requests, especially for complex problems. Use this tool as often as needed throughout your work
- Inputs:
- `title` (string): A brief description of what you are thinking about
- `content` (string): Your thoughts and/or notes in Markdown format
- This tool is designed to be used internally by LLMs for planning and organization
## Usage
Add the following section to your custom instructions:
```markdown
- Structured Thinking with Scratchpad: Use the `scratchpad` tool to write notes, organize your thoughts, and plan steps to help you think through the user's requests, especially for complex problems. Use this tool as often as needed throughout your work.
```
### With Claude Desktop
1. Add this to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"scratchpad-tool": {
"command": "npx",
"args": ["-y", "scratchpad-tool"]
}
}
}
```
### With Claude Code
```
claude mcp add scratchpad-tool -- npx -y scratchpad-tool
```
To disable Claude Code's thinking feature (recommended when using the scratchpad tool):
```.claude/settings.json
{
"env": {
"MAX_THINKING_TOKENS": "0"
}
}
```
## License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
TDQS
A4.4/5.0
Scored across 1 tool
Disambiguation5/5
With only one tool, there is no possibility of ambiguity between tools. The scratchpad has a clear, unique purpose for note-taking and planning.
Naming Consistency5/5
The single tool name 'scratchpad' is descriptive and matches the server's purpose. Since there is only one tool, naming consistency is trivially satisfied.
Tool Count4/5
A single tool is slightly under the typical well-scoped range, but for a scratchpad utility, it is appropriately minimal. The tool serves its purpose without unnecessary bloat.
Completeness5/5
The scratchpad completely covers its stated purpose of note-taking and planning. No additional operations like delete or clear are explicitly needed, making the surface complete.
Maintenance
ActivityInactive
ResponsivenessNo issues