stashdog
Connect to Raz's StashDog inventory MCP server (OAuth via mcp-remote) and run common inventory actions: list items, search items, and add items.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-stashdog
Repository
Skill path: skills/foobarraz/stashdog
Connect to Raz's StashDog inventory MCP server (OAuth via mcp-remote) and run common inventory actions: list items, search items, and add items.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack, Backend, Integration.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install stashdog into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding stashdog to shared team environments
- Use stashdog for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: stashdog
version: 1.0.0
description: |
Connect to Raz's StashDog inventory MCP server (OAuth via mcp-remote) and run
common inventory actions: list items, search items, and add items.
---
# StashDog MCP Skill
StashDog is Raz's item inventory app. This skill documents how to connect to the
StashDog MCP server and includes helper commands for common tasks.
## MCP Connection
- **Endpoint:** `https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp`
- **Auth:** OAuth (via `mcp-remote` proxy)
- **Tools:** `list_items`, `search_items`, `get_item`, `add_item`, `edit_item`, `delete_item`
### Recommended MCP server config
Use this server entry in your MCP client config:
```json
{
"mcpServers": {
"stashdog": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp"
]
}
}
}
```
After the first connection attempt, complete the OAuth browser flow.
## Helper Commands (mcporter)
You can invoke tools directly with `mcporter`:
```bash
# 1) Trigger OAuth and connect
mcporter auth "https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp"
# 2) List items
mcporter call "https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp/list_items" limit=25 offset=0 include_archived=false include_deleted=false
# 3) Search items
mcporter call "https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp/search_items" query="wrench" limit=20
# 4) Add an item
mcporter call "https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp/add_item" name="Socket Set" description="Metric sockets" tags='["tools","garage"]'
```
## Tool Reference
- `list_items(limit, offset, include_archived, include_deleted)`
- `search_items(query, limit)`
- `get_item(item_id)`
- `add_item(name, description?, tags?, container_id?, is_storage?)`
- `edit_item(item_id, name?, description?, tags?, is_archived?)`
- `delete_item(item_id)`
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### README.md
```markdown
# openclaw-skill-stashdog
ClawHub skill for connecting to StashDog MCP server.
- Skill file: `SKILL.md`
- MCP endpoint: `https://gmchczeyburroiyzefie.supabase.co/functions/v1/mcp-server/mcp`
- Auth flow: OAuth via `mcp-remote`
```
### _meta.json
```json
{
"owner": "foobarraz",
"slug": "stashdog",
"displayName": "Stashdog",
"latest": {
"version": "1.0.0",
"publishedAt": 1771028596893,
"commit": "https://github.com/openclaw/skills/commit/bf24a408d655008e3fbc07265f0f375a43c16c52"
},
"history": []
}
```