Oscribble MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Oscribble MCP Servershow me all unchecked tasks in my work project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Oscribble MCP Server
Model Context Protocol (MCP) server for Oscribble - enables Claude Code to interact with your Oscribble task projects through natural language.
What is this?
This MCP server exposes your Oscribble tasks to Claude Code, allowing you to:
List and filter tasks across projects
Complete or uncomplete tasks
View detailed task metadata (priorities, blockers, notes)
Add new tasks to projects
Query task status and dependencies
All through natural language conversation in Claude Code.
Related MCP server: Todoist Meeting MCP
Installation
Quick Start (Recommended)
Add this to your Claude Code MCP configuration (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"oscribble": {
"command": "npx",
"args": ["-y", "@oscargavin/oscribble-mcp"]
}
}
}Restart Claude Code and the MCP server will be available.
Manual Installation
npm install -g @oscargavin/oscribble-mcpThen configure Claude Code to use the installed binary:
{
"mcpServers": {
"oscribble": {
"command": "oscribble-mcp"
}
}
}Available Tools
oscribble_list_projects
List all Oscribble projects with paths and last accessed timestamps.
Example: "Show me all my Oscribble projects"
oscribble_list_tasks
List tasks from a project with optional status filtering.
Parameters:
project_name(string, required) - Name of the projectfilter_status(string, optional) - Filter by"all","checked", or"unchecked"(default:"all")
Examples:
"List all tasks in my work project"
"Show unchecked tasks in oscribble"
"What tasks are incomplete in my-project?"
oscribble_complete_task
Mark a task as complete.
Parameters:
project_name(string, required) - Name of the projecttask_id(string, required) - UUID of the task
Example: "Complete task abc-123 in my work project"
oscribble_uncomplete_task
Mark a task as incomplete.
Parameters:
project_name(string, required) - Name of the projecttask_id(string, required) - UUID of the task
Example: "Uncomplete task abc-123 in my work project"
oscribble_get_task_details
Get detailed information about a specific task including metadata, notes, and blockers.
Parameters:
project_name(string, required) - Name of the projecttask_id(string, required) - UUID of the task
Example: "Show me details for task abc-123 in oscribble"
oscribble_add_raw_task
Add raw task text to a project. The task will be formatted by Oscribble on next sync.
Parameters:
project_name(string, required) - Name of the projecttask_text(string, required) - Raw task text to append
Example: "Add 'Implement dark mode' to my work project"
Usage Examples
Here are some natural language queries you can use with Claude Code once the MCP server is configured:
"What tasks are blocked in oscribble?"
"Show me all critical priority tasks"
"List unchecked tasks across all projects"
"Complete the task about implementing dark mode"
"Add a new task to fix the login bug in my-app"
"What's the status of task abc-123?"How It Works
The MCP server reads and writes to the same storage location as the Oscribble desktop app (~/.project-stickies/), using:
Atomic writes - Temp file + rename pattern prevents data corruption
Safe concurrent access - Read operations work while the Oscribble app is open
Identical data structures - Uses the same TypeScript types as the main app
Storage Structure
~/.project-stickies/
├── settings.json # App-wide settings
├── projects.json # Project registry
└── {project-name}/
├── notes.json # Structured tasks (read/write)
├── raw.txt # Raw input (write for new tasks)
└── .context-cache/ # (Future use)Development
Building from Source
git clone https://github.com/oscargavin/oscribble-mcp.git
cd oscribble-mcp
npm install
npm run buildProject Structure
src/
├── index.ts # Main MCP server implementation
├── types.ts # TypeScript type definitions
└── utils.ts # Utility functions (file I/O, task operations)Testing Locally
After building, you can test the server locally by updating your Claude Code config to point to the built file:
{
"mcpServers": {
"oscribble": {
"command": "node",
"args": ["/path/to/oscribble-mcp/build/index.js"]
}
}
}Troubleshooting
"No projects found"
Make sure you've created at least one project in the Oscribble desktop app first. The MCP server reads from ~/.project-stickies/projects.json.
"Project not found"
Project names are case-sensitive. Use oscribble_list_projects to see the exact project names available.
"Notes file doesn't exist"
This project hasn't been formatted yet. Open the project in the Oscribble desktop app and format some tasks first.
MCP server not showing in Claude Code
Check your
~/.claude/claude_desktop_config.jsonsyntax is valid JSONRestart Claude Code completely (quit and reopen)
Check Claude Code logs at
~/Library/Logs/Claude/mcp.log(macOS)
Requirements
Node.js 18+ (for npx installation)
Oscribble desktop app - This MCP server is a companion to the main app
License
MIT License - see LICENSE for details.
Contributing
Issues and pull requests welcome at github.com/oscargavin/oscribble-mcp.
Related
Oscribble Desktop App - The main task manager application
Model Context Protocol - Learn more about MCP
Claude Code - AI-powered coding assistant
Available Tools
11 toolsoscribble_add_raw_taskA
Add raw task text to a project (will be formatted by Oscribble on next sync)
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_text | Yes | Raw task text to append |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds useful context about the deferred formatting ('will be formatted by Oscribble on next sync'), which is not obvious from the schema. However, it lacks details on permissions, error handling, or response behavior, leaving gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that is front-loaded with the core action and includes essential behavioral context without any wasted words, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation with no annotations and no output schema), the description is minimally complete. It covers the purpose and key behavioral trait (deferred formatting) but lacks details on outcomes, errors, or integration with sibling tools, which could enhance agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters adequately. The description adds no additional meaning beyond what the schema provides, such as examples or constraints, but it doesn't need to compensate for low coverage, resulting in a baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Add raw task text') and resource ('to a project'), and distinguishes it from siblings by specifying that the text will be formatted by Oscribble on next sync, unlike other task manipulation tools like oscribble_begin_task or oscribble_update_task.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when to use this tool (to add raw task text that will be formatted later), but it doesn't explicitly state when not to use it or name alternatives among the sibling tools, such as when immediate formatting is needed versus deferred formatting.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_begin_taskC
Begin timing a task - records start timestamp
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_id | Yes | UUID of the task to begin timing |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions recording a start timestamp, implying a write operation, but does not disclose behavioral traits such as permissions needed, whether it's idempotent, error handling, or how it interacts with other tools (e.g., if starting a task affects its status). This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the key action and purpose. There is no wasted wording, making it appropriately sized and easy to understand at a glance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a timing tool with no annotations and no output schema, the description is incomplete. It fails to explain what happens after timing begins (e.g., does it return a confirmation or task state?), potential side effects, or how it fits into the broader workflow with siblings, leaving the agent with insufficient context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear descriptions for both parameters in the input schema. The description does not add any meaning beyond what the schema provides (e.g., it doesn't explain format constraints or relationships between parameters), so it meets the baseline of 3 for high schema coverage without extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Begin timing') and resource ('a task'), specifying that it records a start timestamp. However, it does not explicitly differentiate this from sibling tools like 'oscribble_complete_task_with_timing' or 'oscribble_update_task', which might involve similar timing operations, leaving some ambiguity in sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It lacks context such as prerequisites (e.g., if the task must exist or be in a specific state), exclusions, or comparisons to siblings like 'oscribble_complete_task_with_timing', which might handle timing differently.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_complete_taskC
Mark a task as complete in an Oscribble project
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_id | Yes | UUID of the task to complete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Mark a task as complete') which implies a mutation, but doesn't describe effects (e.g., task status change, potential notifications, permissions required), response format, or error handling. This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, with every part contributing essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (a mutation tool with no annotations and no output schema), the description is incomplete. It lacks details on behavioral effects, error cases, or return values, which are crucial for proper tool invocation. Sibling tools suggest this is part of a task management system, but the description doesn't leverage that context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters ('project_name', 'task_id') documented in the schema. The description adds no additional parameter semantics beyond what the schema provides (e.g., format details, examples, constraints), so it meets the baseline for high schema coverage without compensating value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Mark a task as complete') and the resource ('in an Oscribble project'), providing specific verb+resource pairing. However, it doesn't explicitly differentiate from sibling tools like 'oscribble_complete_task_with_timing' or 'oscribble_uncomplete_task', which would require more specific scope or contrast.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., task must exist, be in progress), exclusions, or comparisons to siblings like 'oscribble_complete_task_with_timing' (which might include timing data) or 'oscribble_uncomplete_task' (for reversing completion).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_complete_task_with_timingC
Complete a task and calculate duration from start time
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_id | Yes | UUID of the task to complete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must fully disclose behavioral traits. It mentions 'calculate duration from start time', which adds useful context about timing behavior. However, it fails to describe critical aspects like whether this is a destructive mutation, what permissions are required, how errors are handled, or what the output looks like, leaving significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose and key behavior ('calculate duration from start time'). It is front-loaded with no unnecessary words, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a task completion tool with timing calculation, no annotations, and no output schema, the description is incomplete. It lacks details on behavioral implications (e.g., mutation effects, error handling), output format, and usage context, which are essential for an AI agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly documenting both parameters ('project_name' and 'task_id'). The description does not add any meaning beyond the schema, such as explaining how these parameters interact with the timing calculation. Baseline score of 3 is appropriate since the schema handles parameter documentation adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('complete a task') and adds a specific behavior ('calculate duration from start time'), which distinguishes it from the sibling 'oscribble_complete_task'. However, it doesn't specify what resource is being completed (e.g., a task in a project management system), leaving some ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives like 'oscribble_complete_task' or 'oscribble_uncomplete_task'. The description implies usage for tasks with timing needs, but lacks context on prerequisites, error conditions, or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_get_task_detailsB
Get detailed information about a specific task including metadata, notes, and blockers
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_id | Yes | UUID of the task |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions retrieving information, which implies a read-only operation, but doesn't disclose behavioral traits like whether it requires authentication, has rate limits, or what happens if the task doesn't exist. This is a significant gap for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the key action ('Get detailed information') and specifies the scope ('about a specific task') and included details ('metadata, notes, and blockers'). There is no wasted verbiage, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity is moderate (a read operation with two required parameters), no annotations, and no output schema, the description is minimally adequate. It states the purpose but lacks details on behavior, error handling, or return format, which could hinder an AI agent's ability to use it correctly without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with both parameters ('project_name' and 'task_id') clearly documented in the schema. The description doesn't add any meaning beyond what the schema provides, such as explaining the relationship between project and task or the format of the task ID, so it meets the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and resource 'detailed information about a specific task', specifying what information is included (metadata, notes, and blockers). It distinguishes from siblings like 'oscribble_list_tasks' by focusing on a single task's details rather than listing multiple tasks, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when detailed information about a specific task is needed, as opposed to listing or searching tasks. However, it doesn't provide explicit guidance on when to use this tool versus alternatives like 'oscribble_search_tasks' or mention prerequisites such as needing the project name and task ID, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_get_unblocked_tasksC
Get all tasks that are not blocked and ready to work on
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves tasks but doesn't cover critical aspects like whether it's read-only, safe to use, requires authentication, has rate limits, or what the return format looks like. This is a significant gap for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It's appropriately sized and front-loaded, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'unblocked' or 'ready to work on' means in this context, the return format, or any behavioral traits. For a tool with no structured data to rely on, this leaves too many gaps for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'project_name' clearly documented. The description doesn't add any meaning beyond the schema, such as explaining how 'project_name' relates to filtering unblocked tasks, but the baseline is 3 since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('tasks that are not blocked and ready to work on'), making it easy to understand what it does. However, it doesn't explicitly distinguish itself from sibling tools like 'oscribble_list_tasks' or 'oscribble_search_tasks', which likely also retrieve tasks, so it misses full sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, exclusions, or compare it to sibling tools such as 'oscribble_list_tasks' or 'oscribble_search_tasks', leaving the agent to guess based on the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_list_projectsA
List all Oscribble projects with their names, paths, and last accessed timestamps
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool lists projects but does not cover critical aspects like whether it's read-only, pagination behavior, error handling, or performance characteristics. For a list operation with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action ('List all Oscribble projects') and includes essential details without redundancy. Every word serves a purpose, making it easy to parse and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate but not fully complete. It explains what the tool does and what data it returns, but lacks behavioral context (e.g., safety, performance) that would help an agent use it effectively in broader workflows.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately does not discuss parameters, focusing instead on the output details. It adds value by specifying what data is returned, which compensates for the lack of an output schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('List all') and resource ('Oscribble projects'), including the exact fields returned ('names, paths, and last accessed timestamps'). It distinguishes from sibling tools like 'oscribble_list_tasks' by specifying it lists projects rather than tasks, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, context, or exclusions, such as whether it should be used for initial discovery or how it relates to other project-related tools. Without such information, the agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_list_tasksC
List tasks from an Oscribble project with optional status filtering
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| filter_status | No | Filter tasks by completion status (default: all) | all |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states it lists tasks with filtering. It doesn't disclose behavioral traits like whether this is a read-only operation, pagination behavior, error conditions, or what the output format looks like. For a tool with zero annotation coverage, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with zero waste - every word contributes to understanding the tool's purpose. Efficiently communicates the core functionality without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the return values look like, error handling, or behavioral constraints. Given the sibling tools indicate this is part of a task management system, more context about the listing operation would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters. The description adds no additional parameter semantics beyond what's in the schema (project_name and filter_status with enum values). Baseline 3 is appropriate when schema does all the work.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('tasks from an Oscribble project') with the specific scope of optional status filtering. It distinguishes from siblings like 'oscribble_search_tasks' by focusing on listing rather than searching, but doesn't explicitly contrast them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like 'oscribble_get_unblocked_tasks' or 'oscribble_search_tasks'. The description mentions optional filtering but doesn't provide context for choosing between this and other task-retrieval tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_search_tasksC
Search tasks by keyword in text and notes
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| query | Yes | Search query (case-insensitive) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool searches tasks but doesn't describe key behaviors: whether it's read-only or has side effects, what the output format looks like (e.g., list of tasks with details), if there are rate limits, authentication needs, or error conditions. This leaves significant gaps for a search operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action and scope, making it easy to parse quickly, which is ideal for conciseness in tool descriptions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., safety, output format), usage context compared to siblings, and doesn't compensate for the absence of structured output information, making it inadequate for full agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly documenting both parameters ('project_name' and 'query') with their types and purposes. The description adds minimal value beyond this, only implying that 'query' searches 'text and notes' without providing additional syntax or format details. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Search') and target resource ('tasks'), specifying the search scope ('by keyword in text and notes'). However, it doesn't distinguish this tool from sibling tools like 'oscribble_list_tasks' or 'oscribble_get_task_details' that might also retrieve tasks, leaving some ambiguity about when to use this specific search functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing project), exclusions, or comparisons to sibling tools like 'oscribble_list_tasks' for unfiltered listing or 'oscribble_get_task_details' for specific task retrieval, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_uncomplete_taskB
Mark a task as incomplete in an Oscribble project. Optionally log a failed attempt note with details about what was tried.
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_id | Yes | UUID of the task to uncomplete | |
| attempt_note | No | Optional detailed note from Claude Code about the failed attempt. Should include: hypothesis, files changed, what was tried, and what's still broken. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions the action ('Mark a task as incomplete') and optional logging, but does not disclose behavioral traits such as permissions required, whether the operation is reversible, error handling, or rate limits. This leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence and adds optional details in the second. Both sentences earn their place by clarifying the action and the note feature, with no wasted words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral aspects like side effects, error responses, or prerequisites, and does not explain what happens after marking a task incomplete (e.g., status changes). Given the complexity and lack of structured data, it should provide more context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters. The description adds minimal value by hinting at the purpose of 'attempt_note' ('log a failed attempt note with details'), but does not provide additional syntax or format details beyond what the schema specifies. Baseline 3 is appropriate as the schema handles most of the documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Mark a task as incomplete') on a specific resource ('in an Oscribble project'), and distinguishes it from sibling tools like 'oscribble_complete_task' by specifying the opposite operation. It also mentions the optional logging feature, adding further specificity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a task needs to be reverted from completed to incomplete, possibly after a failed attempt, but does not explicitly state when to use this tool versus alternatives like 'oscribble_update_task' or provide exclusions. The mention of 'failed attempt note' suggests a context but lacks clear guidance on alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
oscribble_update_taskC
Update task properties (text, priority, effort estimate, deadline, or notes)
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | Name of the project | |
| task_id | Yes | UUID of the task to update | |
| text | No | New task text (optional) | |
| priority | No | New priority level (optional) | |
| effort_estimate | No | New effort estimate like '2h', '30m' (optional) | |
| deadline | No | New deadline (optional) | |
| notes | No | Additional notes (optional, will be appended) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers minimal behavioral insight. It states 'update' implying mutation, but doesn't disclose permissions needed, whether changes are reversible, rate limits, or how notes are handled ('will be appended' is mentioned but not elaborated). For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action and lists key fields without waste. Every word contributes to understanding the tool's scope, making it appropriately sized and structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (7 parameters, mutation operation) with no annotations and no output schema, the description is incomplete. It lacks behavioral context (e.g., error handling, response format), usage guidelines, and doesn't compensate for the absence of structured safety or output information, making it inadequate for full agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so parameters are well-documented in the schema. The description lists the updatable fields (text, priority, effort estimate, deadline, notes), which aligns with the schema but adds no additional meaning beyond what's already specified, such as format details or constraints. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Update') and resource ('task properties') with specific fields listed (text, priority, effort estimate, deadline, notes). It distinguishes from siblings like 'oscribble_begin_task' or 'oscribble_complete_task' by focusing on property updates rather than state changes, but doesn't explicitly contrast with all siblings like 'oscribble_get_task_details' for read vs. write operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives is provided. It doesn't mention prerequisites (e.g., needing an existing task), exclusions (e.g., not for creating tasks), or comparisons to siblings like 'oscribble_add_raw_task' for new tasks or 'oscribble_complete_task' for status updates, leaving usage context implied at best.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
11 tool updates
v1.3.0- First observed
oscribble_add_raw_task - First observed
oscribble_begin_task - First observed
oscribble_complete_task - First observed
oscribble_complete_task_with_timing - First observed
oscribble_get_task_details - First observed
oscribble_get_unblocked_tasks - First observed
oscribble_list_projects - First observed
oscribble_list_tasks - First observed
oscribble_search_tasks - First observed
oscribble_uncomplete_task - First observed
oscribble_update_task
TDQS
Each tool has a clearly distinct purpose targeting specific operations in the Oscribble task management domain. For example, oscribble_begin_task starts timing, oscribble_complete_task marks completion, and oscribble_complete_task_with_timing adds duration calculation, with no significant overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern with the 'oscribble_' prefix, such as oscribble_add_raw_task, oscribble_list_projects, and oscribble_update_task. This uniformity makes the tool set predictable and easy to navigate for an agent.
With 11 tools, the server provides a well-scoped set that covers essential task management operations without being overwhelming. This count is appropriate for handling projects, tasks, timing, and status updates in a focused domain.
The tool set offers comprehensive CRUD and lifecycle coverage for task management, including creating (add_raw_task), reading (list_tasks, get_task_details), updating (update_task), and deleting equivalents (complete/uncomplete), along with search, timing, and project listing, leaving no obvious gaps for core workflows.
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 Connectors
Manage tasks, Focus Zone, notes, projects, and task history from compatible AI assistants.
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
AI-native task management: list, create, update and archive tasks with rich context for AI agents
1Create and manage MeisterTask projects, tasks, and notes from your AI assistant.
Related MCP Servers
- AlicenseBqualityDmaintenanceIntegrates Claude with Todoist for natural language task management, supporting project and section organization, task creation, updating, completion, and deletion using everyday language.192123MIT
- AlicenseAqualityCmaintenanceConnects Claude to Todoist for transforming meeting notes into actionable tasks with inferred due dates and priorities. It enables full task lifecycle management, including creating subtasks, listing projects, and completing tasks through natural language.7MIT
- AlicenseNot gradedqualityDmaintenanceEnables Claude to manage a personal todo list in Notion, with capabilities to add, view, and complete tasks.9MIT
- AlicenseBqualityDmaintenanceEnables Claude to interact with Things 3 task management, allowing natural language task creation, project analysis, and GTD workflow automation.2444MIT
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/oscargavin/oscribble-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server