io.github.markswendsen-code/taskrabbit
NPM · @STRIDERLABS/MCP-TASKRABBIT · SCANNED AUG 3
MCP server for TaskRabbit - let AI agents book home services and taskers
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 46 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 744 tokens (~82/item across 9 items; 9 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @striderlabs/mcp-taskrabbit
claude mcp add markswendsen-code-taskrabbit -- npx -y @striderlabs/mcp-taskrabbit
codex mcp add markswendsen-code-taskrabbit -- npx -y @striderlabs/mcp-taskrabbit
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"markswendsen-code-taskrabbit": {
"type": "local",
"command": [
"npx",
"-y",
"@striderlabs/mcp-taskrabbit"
],
"enabled": true
}
}
} openclaw mcp add markswendsen-code-taskrabbit --command npx --arg -y --arg @striderlabs/mcp-taskrabbit
mcp_servers:
markswendsen-code-taskrabbit:
command: "npx"
args: ["-y", "@striderlabs/mcp-taskrabbit"] {
"mcpServers": {
"markswendsen-code-taskrabbit": {
"command": "npx",
"args": [
"-y",
"@striderlabs/mcp-taskrabbit"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +40
- Provenance: fail → unverified ▼ security
- Install scripts: pass → unverified ▼ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- License: pass → unverified ▼ functional
- Maintenance: pass → unverified ▼ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.20 ▲ functional
- Dependency health: unverified → partial ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Licence: MIT functional
- 1 Aug 26 +8
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- License: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- Licence: MIT functional
- 31 Jul 26 +15
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 28 Jul 26 −22
- Tool coverage: 100 → unverified ▼ functional
- First check of Schema quality: unverified functional
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@striderlabs/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 97 packages
97 packages in the resolved dependency tree · 95 deprecated · 30 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
taskrabbit_auth_check ~38
Check if user is logged in to TaskRabbit. Returns login status and instructions if not authenticated. Call this before any other TaskRabbit operations.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
taskrabbit_auth_clear ~27
Clear stored TaskRabbit session cookies. Use this to log out or reset authentication state.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
taskrabbit_book_task ~204
Book a task with a specific tasker. Set confirm=false to preview booking details, confirm=true to actually submit the booking. Must be logged in.
| Name | Type | Req | Description |
|---|---|---|---|
| confirm | boolean | — | Set to true to actually submit the booking, false to just preview. Default is false. |
| date | string | yes | Requested date in YYYY-MM-DD format (e.g., '2025-03-15') |
| description | string | — | Optional description of the task and any special requirements |
| location | string | yes | Full address where the task will be performed (e.g., '123 Main St, San Francisco, CA 94102') |
| taskType | string | yes | The type of task being booked (e.g., 'furniture assembly') |
| taskerId | string | yes | The tasker's ID or username slug |
| time | string | yes | Requested start time (e.g., '10:00 AM', '2:30 PM', '14:00') |
No output schema declared.
No examples provided.
taskrabbit_cancel_task ~62
Cancel a booked task. Use the task ID from taskrabbit_get_tasks results. Cancellation policies may apply.
| Name | Type | Req | Description |
|---|---|---|---|
| reason | string | — | Optional reason for cancellation |
| taskId | string | yes | The task ID to cancel (from taskrabbit_get_tasks results) |
No output schema declared.
No examples provided.
taskrabbit_get_tasker ~68
Get detailed profile for a specific tasker, including reviews, skills, response time, and availability. Use the tasker ID from taskrabbit_get_taskers results.
| Name | Type | Req | Description |
|---|---|---|---|
| taskerId | string | yes | The tasker's ID or username slug (from taskrabbit_get_taskers results) |
No output schema declared.
No examples provided.
taskrabbit_get_taskers ~119
Get available taskers for a specific task type and location. Returns tasker profiles with ratings, hourly rates, and review counts.
| Name | Type | Req | Description |
|---|---|---|---|
| location | string | yes | City, zip code, or address (e.g., 'San Francisco, CA', '94102', 'New York, NY') |
| sortBy | string | — | Sort results by price, rating, or number of reviews |
| taskType | string | yes | The type of task or service (e.g., 'furniture assembly', 'house cleaning', 'handyman') |
No output schema declared.
No examples provided.
taskrabbit_get_tasks ~54
View your booked and active tasks on TaskRabbit. Returns task details including status, tasker, date, and price.
| Name | Type | Req | Description |
|---|---|---|---|
| filter | string | — | Filter tasks by status. Defaults to 'all' if not specified. |
No output schema declared.
No examples provided.
taskrabbit_message_tasker ~90
Send a message to a tasker through the TaskRabbit inbox. Use the tasker's ID or a task ID to identify the conversation.
| Name | Type | Req | Description |
|---|---|---|---|
| message | string | yes | The message to send to the tasker |
| taskId | string | — | Optional task ID to send the message within a specific task conversation |
| taskerId | string | yes | The tasker's ID or username to message |
No output schema declared.
No examples provided.
taskrabbit_search_tasks ~82
Search available task categories and service types on TaskRabbit (e.g., 'furniture assembly', 'cleaning', 'handyman', 'moving'). Returns a list of matching service categories.
| Name | Type | Req | Description |
|---|---|---|---|
| query | string | — | Optional search query to filter categories (e.g., 'cleaning', 'plumbing', 'moving'). Leave empty to get all categories. |
No output schema declared.
No examples provided.