← monopoly-gold.com

INDIVIDUAL MCP TOOL

goal-add-note

Add a free-form note (markdown supported) to a goal — decisions taken, dead ends hit, context worth carrying into the next session.

monopoly-gold.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://planner.monopoly-gold.com/_mcp

No auth detected

Connect to this endpoint to inspect the live schema for goal-add-note 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

monopoly-gold.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.planner]
url = "https://planner.monopoly-gold.com/_mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "planner": {
      "type": "http",
      "url": "https://planner.monopoly-gold.com/_mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: planner
Remote MCP URL: https://planner.monopoly-gold.com/_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": {
    "planner": {
      "url": "https://planner.monopoly-gold.com/_mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "planner": {
      "type": "http",
      "url": "https://planner.monopoly-gold.com/_mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "planner",
  "transport": "streamable-http",
  "url": "https://planner.monopoly-gold.com/_mcp"
}
MCP Inspector

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

Related tools

  • project-list — List all projects with optional status filter (active/archived/paused).
  • project-create — Create a new project container for goals.
  • project-get — Fetch full project details: title, slug, status, description, icon, tags, repository info, sourceRef ({type,url,ref} for remote-research or null), goals breakdown by status (backlog/in_progress/blocked/done/cancelled counts), and depends_on list of project dependencies.
  • project-update — Partial update of a project — only the fields you pass are changed; omitted fields are untouched.
  • project-delete — Delete a project.
  • project-add-dependency — Declare that one project depends on another (depends-on relationship).
  • project-remove-dependency — Remove a project dependency.
  • goal-list — List goals with optional filters: projectId (UUID), status (backlog/in_progress/blocked/done/cancelled), type (goal/milestone/task/habit), parentId (UUID — direct children only).