Skip to main content
Glama
Fund-z

FundzWatch MCP Server

get_market_brief

Retrieve a daily AI-generated strategic market brief with narrative analysis of key market movements, patterns, and opportunities.

Instructions

Get today's AI-generated strategic intelligence brief with narrative analysis of the most important market movements, patterns, and opportunities.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:121-126 (registration)
    Tool registration (name, description, and empty inputSchema) for 'get_market_brief' in the ListToolsRequestSchema handler.
      name: "get_market_brief",
      description:
        "Get today's AI-generated strategic intelligence brief with narrative analysis " +
        "of the most important market movements, patterns, and opportunities.",
      inputSchema: { type: "object" as const, properties: {} },
    },
  • Handler for 'get_market_brief' tool: calls GET /market/brief API, extracts the brief object, and returns its date, narrative text, and mentioned companies.
    case "get_market_brief": {
      const data = await apiRequest("GET", "/market/brief");
      const brief = data.brief;
      return textResult(
        `Strategic Intelligence Brief (${brief.date}):\n\n${brief.text}\n\n` +
        `Companies mentioned: ${(brief.companies || []).join(", ")}`
      );
    }
Behavior3/5

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

With no annotations, the description carries full burden. It implies a read-only operation ('Get') but does not explicitly state safety, rate limits, or any side effects. Given no parameters, the lack is moderate.

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?

A single, front-loaded sentence that is concise and informative with no unnecessary words.

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

Completeness4/5

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

Despite no output schema, the description adequately conveys the output is a 'strategic intelligence brief with narrative analysis.' For a simple retrieval tool with no parameters, this is mostly complete, though it could hint at content structure.

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

Parameters4/5

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

The input schema has zero parameters and 100% coverage, so the baseline is 4. The description adds no parameter information, which is acceptable as none exist.

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 tool retrieves 'today's AI-generated strategic intelligence brief' with 'narrative analysis' of market movements, distinctly setting it apart from siblings like get_market_pulse or get_events.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool over siblings (e.g., get_market_pulse, get_scored_leads) or when not to use it. The description only explains what it does without contextualizing its selection.

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