← deerdawn.com

INDIVIDUAL MCP TOOL

record_hot_paths

Record durable file/folder hot paths AFTER you discover them, so future sessions find them before searching.

deerdawn.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://api.deerdawn.com/api/v1/mcp

No auth detected

Connect to this endpoint to inspect the live schema for record_hot_paths and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

deerdawn.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.deerdawn-mcp]
url = "https://api.deerdawn.com/api/v1/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "deerdawn-mcp": {
      "type": "http",
      "url": "https://api.deerdawn.com/api/v1/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: deerdawn-mcp
Remote MCP URL: https://api.deerdawn.com/api/v1/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "deerdawn-mcp": {
      "url": "https://api.deerdawn.com/api/v1/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "deerdawn-mcp": {
      "type": "http",
      "url": "https://api.deerdawn.com/api/v1/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "deerdawn-mcp",
  "transport": "streamable-http",
  "url": "https://api.deerdawn.com/api/v1/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • start_session — Call at the start of every session.
  • list_projects — List all your DeerDawn projects with their current task and project ID.
  • create_project — Create a new DeerDawn project to track a codebase, feature, or initiative.
  • switch_subproject — Set which subproject is active for this codebase, so start_session, update_context, and manage_todos target it by default.
  • archive_project — Archive a dead or finished project so it stops cluttering list_projects and never auto-resolves as the active project.
  • set_project_parent — Re-parent an existing project: nest it under a top-level umbrella by passing parent_project_id, or promote it back to top-level by omitting parent_project_id.
  • rename_project — Rename a project (umbrella or subproject).
  • get_context — Get the current context for a specific project — task, status, decisions, goals, and open questions.