# notevault-mcp

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add nicholasemccormick/notevault-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list nicholasemccormick/notevault-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get nicholasemccormick/notevault-mcp store_note

# Call a tool
npx -y @smithery/cli@latest tool call nicholasemccormick/notevault-mcp store_note '{}'
```

## Direct MCP Connection

Endpoint: `https://notevault-mcp--nicholasemccormick.run.tools`

## Tools (6)

- `store_note` — Use this tool when an agent needs to persist information, facts, context, or decisions for later retrieval. Store anyth…
- `get_note` — Use this tool when an agent needs to retrieve a specific previously stored note by its ID.
- `list_notes` — Use this tool when an agent needs to browse all stored notes, optionally filtered by namespace or tags.
- `update_note` — Use this tool when an agent needs to modify or append to an existing stored note.
- `delete_note` — Use this tool when an agent needs to remove a note that is no longer relevant.
- `search_notes` — Use this tool when an agent needs to find notes containing specific keywords, facts, or topics without knowing the exac…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get nicholasemccormick/notevault-mcp <tool-name>
```
