Skip to main content
Glama
Fund-z

FundzWatch MCP Server

manage_watchlist

List, add, or remove companies on your watchlist to receive alerts when tracked companies have new events.

Instructions

Add, remove, or list companies on your watchlist. Tracked companies generate alerts when they have new events.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesAction: 'list' to view, 'add' to track, 'remove' to untrack
domainsNoCompany domains for add/remove (e.g., ['stripe.com', 'github.com'])

Implementation Reference

  • src/index.ts:127-148 (registration)
    Registration of the manage_watchlist tool in the ListToolsRequestSchema handler, defining name, description, and inputSchema with action (list/add/remove) and domains parameters.
    {
      name: "manage_watchlist",
      description:
        "Add, remove, or list companies on your watchlist. Tracked companies generate " +
        "alerts when they have new events.",
      inputSchema: {
        type: "object" as const,
        properties: {
          action: {
            type: "string",
            enum: ["list", "add", "remove"],
            description: "Action: 'list' to view, 'add' to track, 'remove' to untrack",
          },
          domains: {
            type: "array",
            items: { type: "string" },
            description: "Company domains for add/remove (e.g., ['stripe.com', 'github.com'])",
          },
        },
        required: ["action"],
      },
    },
  • Handler for manage_watchlist tool calls: dispatches on action ('list' -> GET /watchlist, 'add' -> POST /watchlist, 'remove' -> DELETE /watchlist) and returns formatted results.
    case "manage_watchlist": {
      const action = (args as any).action;
      const domains = (args as any).domains;
    
      if (action === "list") {
        const data = await apiRequest("GET", "/watchlist");
        const companies = data.companies || [];
        if (companies.length === 0) {
          return textResult("Your watchlist is empty. Add companies with the 'add' action.");
        }
        const list = companies
          .map((c: any) => `- ${c.name || c.domain} (${c.domain})${c.matched ? "" : " [pending match]"}`)
          .join("\n");
        return textResult(`Watchlist (${data.total}/${data.limit} slots used):\n\n${list}`);
      }
    
      if (!domains || domains.length === 0) {
        return textResult("Please provide domains to add or remove.");
      }
    
      if (action === "add") {
        const data = await apiRequest("POST", "/watchlist", { domains });
        return textResult(
          `Added ${data.added} companies. Already tracked: ${data.already_tracked}. ` +
          `Not found: ${data.not_found}. Total tracked: ${data.total_tracked}.`
        );
      }
    
      if (action === "remove") {
        const data = await apiRequest("DELETE", "/watchlist", { domains });
        return textResult(`Removed ${data.removed} companies. Total tracked: ${data.total_tracked}.`);
      }
    
      return textResult("Invalid action. Use 'list', 'add', or 'remove'.");
    }
  • Input schema for manage_watchlist: action (enum: list/add/remove) required, domains (array of strings) optional.
    inputSchema: {
      type: "object" as const,
      properties: {
        action: {
          type: "string",
          enum: ["list", "add", "remove"],
          description: "Action: 'list' to view, 'add' to track, 'remove' to untrack",
        },
        domains: {
          type: "array",
          items: { type: "string" },
          description: "Company domains for add/remove (e.g., ['stripe.com', 'github.com'])",
        },
      },
      required: ["action"],
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It mentions that tracked companies generate alerts, but does not detail side effects (e.g., destructiveness of remove), permissions, or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences: first states purpose, second adds a key behavioral consequence. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple CRUD tool with no output schema, the description covers core functionality and alerts, but lacks details on error handling, limits, or output format of the list action.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for both parameters. The description adds context that adding triggers alerts, but adds no new parameter-level detail beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Add, remove, or list' and the resource 'companies on your watchlist,' distinguishing it from siblings like get_watchlist_events.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for managing watchlist entries and mentions alerts, but does not explicitly guide when to use this vs. alternatives like get_watchlist_events or get_scored_leads.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Fund-z/fundzwatch-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server