Skip to main content
Glama

Fodda MCP Server

Expert-curated knowledge graphs for AI agents — PSFK Retail, Beauty, Sports and partner datasets via the Model Context Protocol.

MCP Registry npm Version License


Quick Start

Claude (Web — Pro, Max, Team, Enterprise)

  1. Get your personal MCP URL at app.fodda.ai → Account → MCP Integration (format: https://mcp.fodda.ai/c/<your-token>)

  2. In Claude, go to Settings → Connectors → Add custom connector, paste the URL, and click Add

  3. Start chatting with your Fodda knowledge graphs

Note: legacy ?api_key= or ?user_id= query string URLs are deprecated and return HTTP 401 with explicit instructions (Fodda: this connection URL is outdated. Get your new MCP URL at https://app.fodda.ai...). Get your fresh MCP URL or connect via OAuth at app.fodda.ai.

Claude Code (CLI — SSE)

claude mcp add --transport sse fodda https://mcp.fodda.ai/sse \
  --header "Authorization: Bearer YOUR_API_KEY"

Claude Enterprise

For Claude Enterprise with admin-managed connectors, your workspace admin can register the Fodda MCP server using the same Streamable HTTP endpoint (https://mcp.fodda.ai/mcp) via the Admin Console. See Enterprise MCP Setup for full details.

Use OpenAI's native MCP support — no function definitions needed:

from openai import OpenAI
client = OpenAI()

resp = client.responses.create(
    model="gpt-5",
    tools=[{
        "type": "mcp",
        "server_label": "fodda",
        "server_description": "Expert-curated knowledge graphs for retail, beauty, sports trends and earnings intelligence.",
        "server_url": "https://mcp.fodda.ai/mcp",
        "authorization": "Bearer YOUR_API_KEY",
        "require_approval": "never",
    }],
    input="What are the top emerging retail trends?",
)
print(resp.output_text)
import OpenAI from "openai";
const client = new OpenAI();

const resp = await client.responses.create({
  model: "gpt-5",
  tools: [{
    type: "mcp",
    server_label: "fodda",
    server_description: "Expert-curated knowledge graphs for retail, beauty, sports trends and earnings intelligence.",
    server_url: "https://mcp.fodda.ai/mcp",
    authorization: "Bearer YOUR_API_KEY",
    require_approval: "never",
  }],
  input: "What are the top emerging retail trends?",
});
console.log(resp.output_text);

Tip: To reduce latency with 30+ tools, use allowed_tools to filter: "allowed_tools": ["search_graph", "search_statistics", "brand_tracker"]

Legacy: If you're using chat.completions.create() with function calling, define a custom function that calls the Fodda REST API. See fodda.ai/connect for details.

Connect from ChatGPT (ChatGPT Apps Directory)

To connect Fodda to ChatGPT (Apps Directory listing or a custom MCP connection):

  • Server URL: https://mcp.fodda.ai/chatgpt

  • Authentication: OAuth 2.1 (PKCE S256, Dynamic Client Registration) — authorization server https://clerk.fodda.ai (metadata at https://clerk.fodda.ai/.well-known/oauth-authorization-server)

  • Resource metadata discovery: https://mcp.fodda.ai/.well-known/oauth-protected-resource/chatgpt

  • Curated tool profile: 24 tools covering trends, brand tracking, earnings intelligence, expert intelligence, and visual generation.

Generic Streamable HTTP Client

Connect to the /mcp endpoint using HTTP POST (Streamable HTTP) with Authorization: Bearer YOUR_API_KEY:

https://mcp.fodda.ai/mcp

Gemini / Antigravity

Add to ~/.gemini/config/mcp_config.json:

{
  "mcpServers": {
    "fodda": {
      "serverUrl": "https://mcp.fodda.ai/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Generic SSE Client

Connect to https://mcp.fodda.ai/sse with an Authorization: Bearer YOUR_API_KEY header.


Related MCP server: PolyNeural.ai Knowledge Graph MCP Bundle

Available Tools

The Fodda MCP server exposes a rich suite of 30 tools to search, analyze, brainstorm, and visualize trends, expert-curated knowledge graphs, and corporate documents.

Tool

Description

Deterministic

list_graphs

Discover available knowledge graphs, metadata, and routing instructions.

search_graph

Hybrid keyword + semantic search across curated graphs for trend clusters and evidence.

search_statistics

Search for specific quantitative metrics, indicators, and numeric data points.

search_insights

Search expert quotes, qualitative signals, and professional interpretations.

get_label_values

Discover valid values for a node label or category.

Traversal & Graph Operations

Tool

Description

Deterministic

get_neighbors

Traverse from seed nodes to discover related concept nodes and links.

get_node

Retrieve detailed metadata, properties, and attributes for a single node by ID.

get_evidence

Retrieve source signals, articles, citations, and provenance for a trend or node.

discover_adjacent_trends

Find semantically similar trends to a given trend node.

Intelligence Domains

Tool

Description

Deterministic

get_domain_intelligence

Search all PSFK curated domain graphs (retail, beauty, sports, fashion, consumer electronics, F&B) in parallel.

get_expert_intelligence

Query specialist industry graphs built by leading strategists and experts.

get_report_intelligence

Search institutional report insights from DHL, PwC, Delta, and other partners.

Earnings & Corporate Insights

Tool

Description

Deterministic

get_earnings_intelligence

Query management commentary, business guidance, and Q&A from company earnings calls.

get_earnings_divergence

Detect deflections, gaps, and divergence between analyst concerns and executive responses in earnings calls.

Brand & Ideation

Tool

Description

Deterministic

brand_tracker

Compile a comprehensive Brand Intelligence Profile across all knowledge graphs.

brainstorm_topic

Graph-powered brainstorm map discovering unexpected connections and adjacent territories.

Deep Research & Execution Agents

Tool

Description

Deterministic

deep_research_topic

Launch an autonomous research session combining graphs with live web search.

check_research_status

Check progress or retrieve the final narrative report of a deep research job.

get_supplemental_context

Fetch macro context from up to 10 institutional data sources in a single query.

check_supplemental_status

Retrieve output from a supplemental context job.

Synthetic Analyst & Visualization

Tool

Description

Deterministic

list_analysts

List available Synthetic Analyst expert personas.

consult_analyst

Engage a Synthetic Analyst persona to synthesize answers with specialized voice.

generate_visual

Generate branded SVG data visualizations (Cultural Shifts, Competitive Compass, Innovation Pathway, etc.).

Note on Dynamic Partner Skills: When partner skills (such as Paralogy or Igloo) are enabled for a user's account, additional specialized tools (e.g. paralogy_analyze_trends, ideation tools) are dynamically registered on the MCP server and made available automatically.

Note on System Utilities: The server also registers several helper and account management utilities (e.g., get_my_account, toggle_graph_preference, update_user_profile, manage_scheduled_reports, send_feedback) to allow the AI assistant to query subscription status, manage scheduled briefings, or save personalization settings directly.


Discovery Endpoints

Endpoint

Description

GET /health

Health check ({ "status": "ok", "version": "..." })

POST /mcp

MCP endpoint — call the standard tools/list method on an initialized session to retrieve full tool schemas and capabilities


Authentication

Preferred — HTTP header (used by the directory connection and all header-capable clients). Pass your Fodda API key as a Bearer token:

Authorization: Bearer sk_live_...

The server also accepts the key via an X-API-Key: sk_live_... header.

In MCP request _meta:

{ "_meta": { "authorization": "Bearer sk_live_..." } }

Fallback — URL query parameter. Some clients (e.g. the Claude.ai web custom connector UI) cannot set custom request headers. For those, the key may be passed as ?api_key=.... This is provided only for compatibility; prefer header-based auth wherever the client supports it, since URLs are more likely to be logged by intermediaries. The server never returns your API key in tool output.


Configuration

Variable

Description

Default

PORT

HTTP server port (omit for stdio mode)

FODDA_API_URL

Upstream API base URL

https://api.fodda.ai

FODDA_MCP_SECRET

HMAC signing secret for API requests

NODE_ENV

Environment (development / production)

production


Build & Run

npm install
npm run build

# Stdio mode
npm start

# SSE mode
PORT=8080 npm start

Self-Hosting

  • Docker: docker build -t fodda-mcp . && docker run -p 8080:8080 -e PORT=8080 fodda-mcp

  • Cloud Run: ./deploy_cloud_run.sh

  • Kubernetes: See deployment/k8s/

  • Terraform: See deployment/terraform/


MCP Registry

This server is published to the Official MCP Registry as ai.fodda/mcp-server.

# Verify listing
curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=ai.fodda/mcp-server"

Privacy Policy

Full policy: https://www.fodda.ai/privacy

Summary of how the Fodda MCP server handles data (the hosted policy is authoritative):

  • What we collect. Account information (name, email, organization) to manage your account; usage data — API queries (query text, graph accessed, timestamps) logged for billing, service improvement, and abuse prevention; and standard technical data (IP, browser type, referral URLs). We do not store the full content of AI-generated responses. Your API key authenticates requests and is never returned in tool output.

  • How it's used. To provide and improve the Services, process billing, enforce rate limits and prevent abuse, communicate support/service updates, and meet legal obligations. Requests are proxied to the Fodda API (https://api.fodda.ai) over TLS.

  • Third-party sharing. We do not sell your personal information. Data is shared only with service providers (e.g. payment processors, cloud hosting) under confidentiality agreements, or when required by law.

  • AI model training. Fodda does not use your queries or data to train AI models. Knowledge graphs are expert-curated, not generated from user interactions.

  • Retention. Account information is retained while your account is active; query logs are retained for billing and analytics. You may request account/data deletion via the contact below.

  • Security. TLS-encrypted connections, API-key authentication, and secure cloud infrastructure.

  • Contact. Privacy inquiries: privacy@fodda.ai.

See the full hosted Privacy Policy (last updated June 16, 2026) for the complete, authoritative terms.


Support

To report a security issue, email hello@fodda.ai with "SECURITY" in the subject line.


License

Proprietary — fodda.ai

Available Tools

6 tools
get_evidenceCInspect

Get source signals, articles, and evidentiary depth for a specific node. Essential for provenance and fact-checking.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphIdYesThe graph ID
for_node_idYesThe ID of the node (Trend or Article)
userIdYesUnique identifier for the user (Required)
top_kNoNumber of evidence items to return (default 5)

Output Schema

ParametersJSON Schema
NameRequiredDescription
usageNo
node_idNoThe node this evidence supports
evidenceNoArray of evidence items with source URLs, titles, snippets, and relevance scores

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool is 'Essential for provenance and fact-checking,' which hints at its role in verifying information, but doesn't describe key behaviors such as authentication needs (implied by 'userId' parameter), rate limits, response format, or whether it's a read-only operation. This leaves significant gaps in understanding how the tool behaves in practice.

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

Conciseness4/5

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

The description is concise and front-loaded, consisting of two sentences that directly state the tool's purpose and importance. There's no unnecessary information, and each sentence contributes value by explaining what the tool does and its context. However, it could be slightly more structured by explicitly separating usage guidance from purpose.

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?

Given the tool has an output schema (which covers return values) and high input schema coverage, the description provides a basic but incomplete context. It explains the purpose and importance but lacks details on behavioral traits, usage guidelines, and how it integrates with sibling tools. For a tool with 4 parameters and no annotations, this leaves gaps in overall completeness, though the structured data mitigates some issues.

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?

The input schema has 100% description coverage, clearly documenting all four parameters. The description adds some context by mentioning 'for a specific node,' which aligns with the 'for_node_id' parameter, but doesn't provide additional semantic details beyond what the schema already covers. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't significantly enhance parameter understanding.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Get source signals, articles, and evidentiary depth for a specific node.' It specifies the verb ('Get') and resources ('source signals, articles, evidentiary depth'), and mentions the context ('provenance and fact-checking'). However, it doesn't explicitly differentiate this from sibling tools like 'get_node' or 'get_neighbors', which might also retrieve node-related information.

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?

The description provides minimal usage guidance: it implies this tool is used for 'provenance and fact-checking' of a node, but doesn't specify when to use it versus alternatives like 'get_node' or 'search_graph'. There's no explicit mention of prerequisites, exclusions, or comparative contexts with sibling tools, leaving the agent to infer usage scenarios.

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

get_label_valuesAInspect

Discover valid values for a specific node label (e.g., RetailerType, Technology). Use for discovery, UI filters, and category exploration.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphIdYesThe graph ID
labelYesThe label to fetch values for
userIdYesUnique identifier for the user (Required)

Output Schema

ParametersJSON Schema
NameRequiredDescription
countNoNumber of values found
labelNoThe label queried
valuesNoArray of valid values for the label

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It implies a read-only operation ('discover') and hints at use cases like UI filters, but doesn't disclose behavioral traits such as authentication needs (though 'userId' is required), rate limits, or what happens if invalid inputs are provided. It adds some context but lacks depth for a tool with no annotations.

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?

The description is concise and well-structured in two sentences: the first states the purpose with examples, and the second provides usage guidelines. Every sentence adds value without redundancy, making it efficient and front-loaded.

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?

Given the tool's moderate complexity (3 required parameters, no annotations, but with an output schema), the description is reasonably complete. It covers purpose and usage, and since an output schema exists, it doesn't need to explain return values. However, it could improve by addressing authentication or error handling, given the lack of annotations.

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?

The input schema has 100% description coverage, with clear parameter descriptions (e.g., 'The graph ID', 'The label to fetch values for'). The description adds no additional parameter semantics beyond what the schema provides, such as explaining label examples further or clarifying user ID requirements. Baseline 3 is appropriate given high schema coverage.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Discover valid values for a specific node label' with examples like 'RetailerType, Technology'. It specifies the action (discover) and resource (node label values), but doesn't explicitly differentiate from sibling tools like 'get_node' or 'search_graph' that might also retrieve node-related information.

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

Usage Guidelines4/5

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

The description provides clear usage context: 'Use for discovery, UI filters, and category exploration.' This gives practical scenarios for when to use the tool. However, it doesn't explicitly state when NOT to use it or name alternatives among the sibling tools, such as when to prefer 'get_node' for node details instead.

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

get_neighborsBInspect

Traverse the graph from seed nodes to find related concepts and relationships. Useful for depth-first discovery.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphIdYesThe graph ID
seed_node_idsYesArray of node IDs to start traversal from
userIdYesUnique identifier for the user (Required)
relationship_typesNoFilter by relationship types
depthNoTraversal depth (default 1, max 2)
limitNoMaximum results (default 50)

Output Schema

ParametersJSON Schema
NameRequiredDescription
edgesNoArray of relationships between nodes
nodesNoArray of neighboring nodes
usageNo

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'depth-first discovery,' which hints at the traversal algorithm, but doesn't cover critical aspects like whether this is a read-only operation, potential performance impacts, rate limits, authentication needs (implied by userId parameter), or what the output contains. For a graph traversal tool with 6 parameters, this leaves significant behavioral gaps.

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?

The description is highly concise and front-loaded: two sentences that directly state the purpose and usage context without any fluff. Every word earns its place, making it easy for an AI agent to parse quickly. It efficiently communicates the core functionality in a structured manner.

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?

Given the complexity of a graph traversal tool with 6 parameters, no annotations, but an output schema (which handles return values), the description is minimally adequate. It covers the basic purpose and hints at usage but lacks details on behavioral traits, error handling, or integration with sibling tools. The presence of an output schema reduces the need to explain returns, but more context on operational aspects would improve completeness.

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 description coverage is 100%, so the input schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by implying traversal from 'seed nodes' and 'depth-first' approach, but it doesn't provide additional semantics like examples or edge cases. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't compensate but doesn't detract either.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Traverse the graph from seed nodes to find related concepts and relationships.' It specifies the verb ('traverse') and resource ('graph'), though it doesn't explicitly differentiate from sibling tools like 'search_graph' or 'get_node', which might also involve graph operations. The phrase 'depth-first discovery' adds specificity about the traversal approach.

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 provides implied usage guidance with 'Useful for depth-first discovery,' suggesting it's for exploration rather than targeted queries. However, it doesn't explicitly state when to use this tool versus alternatives like 'search_graph' or 'get_node,' nor does it mention prerequisites or exclusions. The guidance is helpful but lacks direct sibling differentiation.

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

get_nodeBInspect

Directly retrieve metadata and properties for a single node by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphIdYesThe graph ID
nodeIdYesThe ID of the node
userIdYesUnique identifier for the user (Required)

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNoNode ID
labelsNoArray of node labels/types
displayNoDisplay name of the node
propertiesNoKey-value properties of the node

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves metadata and properties, implying a read-only operation, but doesn't cover aspects like authentication needs (e.g., based on userId), rate limits, error handling, or what specific metadata/properties are returned. This leaves gaps in understanding the tool's behavior beyond basic functionality.

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?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded with the key action and resource, making it easy to parse quickly. There is no wasted information, earning a high score for conciseness.

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?

Given the tool has an output schema, the description doesn't need to explain return values. However, with no annotations and a read-focused tool, the description adequately covers the basic operation but lacks details on behavioral traits like permissions or limits. It's minimally viable for a retrieval tool but could be more complete by addressing usage context or behavioral nuances.

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?

The input schema has 100% description coverage, with clear documentation for all three parameters (graphId, nodeId, userId). The description adds no additional meaning beyond this, as it doesn't explain parameter interactions, formats, or examples. Given the high schema coverage, the baseline score of 3 is appropriate, as the schema adequately handles parameter semantics without extra description.

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

Purpose4/5

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

The description clearly states the action ('Directly retrieve') and resource ('metadata and properties for a single node by its ID'), making the purpose specific and understandable. However, it doesn't explicitly differentiate this tool from its siblings like 'get_neighbors' or 'search_graph', which might also retrieve node-related information but with different scopes or methods.

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?

The description provides no guidance on when to use this tool versus alternatives. It mentions retrieving a single node by ID, but doesn't specify scenarios where this is preferred over sibling tools like 'get_neighbors' (for related nodes) or 'search_graph' (for broader queries), leaving the agent without explicit usage context.

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

psfk_overviewAInspect

Get a structured macro overview from the PSFK Graph. Returns up to 3 meta_patterns. Useful for top-level briefings before deeper exploration. At least one of 'industry' or 'sector' must be provided.

ParametersJSON Schema
NameRequiredDescriptionDefault
industryNoFilter by industry (e.g. 'Retail', 'Health')
sectorNoFilter by sector
regionNoFilter by region
timeframeNoTimeframe for the overview
userIdYesUnique identifier for the user (Required)

Output Schema

ParametersJSON Schema
NameRequiredDescription
usageNo
sectorNoSector filter applied
industryNoIndustry filter applied
meta_patternsNoUp to 3 macro-level pattern objects with trend summaries

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool returns 'up to 3 meta_patterns' and has a parameter constraint ('At least one of 'industry' or 'sector' must be provided'), which adds useful behavioral context. However, it doesn't mention other important traits like whether this is a read/write operation, authentication needs, rate limits, or error conditions.

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?

The description is extremely concise and well-structured in just three sentences. Each sentence earns its place: the first states the core purpose, the second specifies output and use case, and the third provides a critical parameter constraint. There's zero wasted language and it's front-loaded with the most important information.

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?

Given that there's an output schema (which handles return values), no annotations, and 100% schema coverage for parameters, the description provides adequate context for this tool's complexity. It covers the purpose, output scope, use case, and a key parameter constraint. The main gap is lack of behavioral details about the operation's nature (read/write, side effects, etc.) which would be important without annotations.

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 description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds minimal value beyond the schema by emphasizing that 'At least one of 'industry' or 'sector' must be provided' (a constraint not in the schema's required field). This provides some additional semantic context, but most parameter meaning comes from the schema.

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

Purpose4/5

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

The description clearly states the tool's purpose: 'Get a structured macro overview from the PSFK Graph' with specific output ('up to 3 meta_patterns') and context ('useful for top-level briefings before deeper exploration'). It uses a specific verb ('Get') and resource ('structured macro overview'), but doesn't explicitly differentiate from sibling tools like 'get_node' or 'search_graph' beyond mentioning it's for 'top-level briefings'.

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 provides some usage context: 'Useful for top-level briefings before deeper exploration' implies this tool should be used for initial exploration rather than detailed queries. However, it doesn't explicitly state when to use this tool versus alternatives like 'get_node' or 'search_graph', nor does it provide clear exclusions or prerequisites beyond the parameter requirement.

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

search_graphAInspect

Perform hybrid (vector + keyword) search on a Fodda knowledge graph. Returns trends and articles matching the query. Uses a 3-tier fallback: vector search → keyword search → all trends. Always returns results.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphIdYesThe graph ID. For PSFK verticals use: 'retail', 'beauty', or 'sports'. Other graphs: 'psfk' (all verticals), 'sic' (Strategic Independent Culture), 'waldo'.
queryYesThe search query
userIdYesUnique identifier for the user (Required)
limitNoMaximum number of results (default 25, max 50)
use_semanticNoWhether to use semantic search (default true)

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalNoTotal number of results found
usageNoBilling/usage metadata
resultsNoArray of matching nodes (trends, articles)
search_methodNoSearch method used: 'vector', 'keyword', or 'fallback'

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key traits: the hybrid search approach, the 3-tier fallback (vector → keyword → all trends), and the guarantee to 'Always returns results'. This covers search methodology and reliability, though it omits details like rate limits, authentication needs, or error handling, which are relevant for a search tool.

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?

The description is front-loaded with the core purpose in the first sentence, followed by additional behavioral details in a concise manner. Every sentence earns its place by explaining the search type, return content, fallback mechanism, and reliability guarantee without redundancy or unnecessary elaboration.

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?

Given the tool's complexity (5 parameters, hybrid search) and the presence of an output schema (which covers return values), the description is largely complete. It explains the search behavior and fallback, but could improve by addressing potential limitations or how it differs from sibling tools. The lack of annotations is compensated by the description's behavioral details, making it adequate for agent use.

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 description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds minimal value beyond the schema by mentioning 'trends and articles' as return types, which hints at the output but doesn't elaborate on parameter interactions or usage nuances. Baseline 3 is appropriate as the schema handles most of the parameter semantics.

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's purpose with specific verbs ('perform hybrid search') and resources ('Fodda knowledge graph'), and distinguishes it from siblings by specifying it returns 'trends and articles matching the query' rather than individual nodes or evidence. It explicitly mentions the 3-tier fallback mechanism, which further clarifies its unique functionality.

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 through the mention of 'hybrid (vector + keyword) search' and the fallback mechanism, suggesting it's for retrieving content based on queries. However, it lacks explicit guidance on when to use this tool versus alternatives like 'get_node' or 'get_evidence', and does not specify prerequisites or exclusions, leaving the agent to infer context from the tool name and parameters.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv1.3.2
    • First observedget_evidence
    • First observedget_label_values
    • First observedget_neighbors
    • First observedget_node
    • First observedpsfk_overview
    • First observedsearch_graph

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: get_evidence focuses on source signals and provenance, get_label_values on label discovery, get_neighbors on graph traversal, get_node on direct metadata retrieval, psfk_overview on macro patterns, and search_graph on hybrid search. The descriptions reinforce these unique roles, making misselection unlikely.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (e.g., get_evidence, get_label_values, get_neighbors, get_node, search_graph). The only deviation is psfk_overview, which still maintains a noun_noun structure that fits the pattern without mixing conventions, ensuring predictability and readability.

Tool Count5/5

With 6 tools, this server is well-scoped for graph exploration and knowledge retrieval. Each tool serves a specific function in the workflow (e.g., discovery, traversal, search, metadata access), and none appear redundant or excessive, making the count appropriate for the domain.

Completeness4/5

The tool set covers core operations for graph-based knowledge exploration: retrieval (get_node, get_evidence), traversal (get_neighbors), search (search_graph), discovery (get_label_values), and overview (psfk_overview). A minor gap exists in update or manipulation tools (e.g., add_node, modify_relationships), but agents can likely work around this for read-only analysis.

Maintenance

ActivityActive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    F
    maintenance
    Provides AI agents with persistent memory and knowledge management through a comprehensive knowledge graph platform. Enables storing, searching, and managing entities, relationships, and observations with advanced features like trending analysis and smart ranking.
    3
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Real-time curated knowledge API for AI agents. Updated Mon/Wed/Fri from 31 sources covering AI/tech, startups, alternative markets, and emerging markets — no scraping or storage required.
    1
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to search and retrieve market signals, revenue ideas, and growth tactics from 2,000+ curated entries across 18 sources.
    -

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/piers-fawkes/fodda-mcp'

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