MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Agenticfeed MCP Server

by Bluestratus
Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Find AI-ready merchant feeds: resolve a store domain to its ID and fetch full product detail.

About

Find AI-ready merchant feeds: resolve a store domain to its ID and fetch full product detail.

Remote endpoints: streamable-http: https://agenticfeed.ai/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 0 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

2 tools verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-bluestratus-agenticfeed": {
      "url": "https://agenticfeed.ai/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Agenticfeed Standard

Version License: MIT Reference implementation

An open specification for making ecommerce product catalogues readable by AI shopping agents.

AI assistants like ChatGPT, Claude, Perplexity, and Gemini are already recommending products to millions of shoppers. They do not browse category pages or read banner ads. They consume structured data and reason about which products best match the buyer's intent. Most merchant websites are invisible to them.

This standard defines a lightweight, discoverable format that gives AI agents exactly what they need.


Quick start

Add one line to the <head> of every page on your website:

<link rel="agenticfeed" type="application/json" href="https://yourdomain.com/feed.json">

That tag tells any AI agent or crawler where your structured product feed lives. The rest of this document describes what that feed should contain.


Contents

  • What is an agentic feed?
  • Why does this standard exist?
  • How is it different from a Google Merchant Center feed?
  • How do AI agents discover it?
  • How do I add it to my website?
  • Specification
    • 1. Discovery tag
    • 2. Feed index
    • 3. Intent endpoints
    • 4. Product detail
    • 5. UTM attribution
    • 6. Link validation
  • Agent Query API
    • Authentication
    • Request
    • Response
    • Agent Card
  • Examples
  • Reference implementation
  • Contributing
  • Licence

What is an agentic feed?

An agentic feed is a structured product data feed built for AI agents rather than search engine crawlers or human browsers.

A traditional product page is designed to be rendered and read by a person. A Google Merchant Center feed is designed to be parsed by a price comparison engine. An agentic feed is designed to be reasoned about by an AI.

The key difference is intent data. Where a merchant feed tells an agent "here is a cordless drill, it costs £29.99 and it is in stock," an agentic feed tells it "here is a cordless drill that answers the question what drill do I need for assembling flat-pack furniture, solves the problem I keep stripping screws with my old drill, and fits the use case home DIY for a first-time homeowner."

That is the layer of context an AI agent needs to make a confident recommendation to a specific buyer.


Why does this standard exist?

AI shopping is already happening. The tooling to serve it well does not yet exist as an open, portable standard.

Search engines standardised web content discovery through sitemaps, robots.txt, and canonical tags. RSS standardised content syndication through a single autodiscovery tag. Neither was designed for the kind of structured reasoning that AI agents perform when they decide what to recommend.

This specification fills that gap. It defines:

  • How a website signals to AI agents that a structured product feed exists
  • What format that feed takes
  • How intent data (questions, problems, use cases) is structured alongside standard product data
  • How AI agents navigate from a buyer's query to a specific product recommendation

The format is intentionally minimal. It builds on schema.org types that crawlers already understand. It adds the intent layer that makes AI recommendation possible.


How is it different from a Google Merchant Center feed?

Google Merchant Center feedAgenticfeed
FormatXML (RSS-like)JSON-LD
SchemaGoogle's proprietary specschema.org + agenticfeed namespace
Primary consumerPrice comparison, Shopping adsAI agents, LLMs, shopping assistants
DiscoveryManual URL submissionAutodiscovery via <link rel="agenticfeed">
Intent dataNoneQuestions, problems, use cases per product
Product contextPrice, title, image, availabilityPrice, title, image + buyer intent layer
AttributionNone built inUTM parameters on every product URL

A Google Merchant Center feed tells a machine what a product is. An agentic feed tells it why a specific buyer should choose it.

The two are complementary. Many merchants use a GMC feed as the data source for generating an agentic feed.


How do AI agents discover it?

The discovery mechanism follows the same autodiscovery pattern the web has used for decades:

rel="stylesheet"   tells browsers where to find CSS
rel="icon"         tells browsers where to find the favicon
rel="alternate"    tells crawlers where to find RSS feeds
rel="agenticfeed"  tells AI agents where to find structured product data

When an AI agent or crawler visits a merchant's website, it reads the page <head>. If it finds a rel="agenticfeed" tag, it knows exactly where to fetch structured product data without being told the URL in advance.

This means:

  1. No manual registration with each AI platform
  2. No API keys or access agreements required
  3. Any AI agent that implements this standard can discover your feed automatically
  4. The merchant controls the data at their own URL

How do I add it to my website?

Step 1. Add the discovery tag to every page <head>:

<link rel="agenticfeed" type="application/json" href="https://yourdomain.com/feed.json">

Step 2. Serve a JSON-LD feed index at that URL (see examples/feed.json):

{
  "@context": "https://schema.org",
  "@type": "DataFeed",
  "name": "Your Store Name",
  "url": "https://yourdomain.com/feed.json",
  "provider": {
    "@type": "Organization",
    "name": "Agenticfeed",
    "url": "https://agenticfeed.ai"
  },
  "dataFeedElement": [
    {
      "@type": "DataFeedItem",
      "name": "Questions",
      "url": "https://yourdomain.com/questions.json"
    },
    {
      "@type": "DataFeedItem",
      "name": "Problems",
      "url": "https://yourdomain.com/problems.json"
    },
    {
      "@type": "DataFeedItem",
      "name": "Use Cases",
      "url": "https://yourdomain.com/use-cases.json"
    }
  ]
}

Step 3. Serve intent endpoints for each category (see examples/questions.json).

Step 4. Serve product detail documents for each product (see examples/product.json).

For Shopify merchants, agenticfeed.ai handles all of this automatically including injecting the discovery tag into your theme.


Specification

1. Discovery tag

<link rel="agenticfeed" type="application/json" href="{absolute-url-to-feed-index}">
AttributeValue
relagenticfeed
typeapplication/json
hrefAbsolute URL to the feed index document

Place this tag in the <head> of every page. It must appear in the server-rendered HTML, not injected by JavaScript, so crawlers can find it without executing scripts.


2. Feed index

Content-Type: application/ld+json Schema.org type: DataFeed

The feed index is the entry point for any agent reading your feed. It identifies the merchant, lists intent endpoints, and provides the URL template for resolving individual products.

See examples/feed.json for a complete example.

Agent workflow:

  1. Find the discovery tag in the page <head>
  2. Fetch the feed index
  3. Read dataFeedElement to find intent endpoints
  4. Fetch the relevant endpoint based on the buyer's query type
  5. Match intent entries to the buyer's need and extract product IDs
  6. Resolve each product ID using the agenticfeed.resolution.product.url template
  7. Fetch the product detail document

3. Intent endpoints

Intent endpoints are JSON-LD ItemList documents grouped by product category. There are three intent types:

Questions — natural language questions a buyer asks before purchasing. Schema.org type: Question with suggestedAnswer pointing to the product URL. See examples/questions.json

Problems — pain points or needs the product addresses. Schema.org type: ListItem with name (the problem) and url (the product). See examples/problems.json

Use cases — specific scenarios or goals the product fits. Schema.org type: ListItem with name (the use case) and url (the product). See examples/use-cases.json


4. Product detail

Content-Type: application/ld+json Schema.org type: Product

Each product has its own document at a stable URL. It combines standard schema.org Product data with the intent content under an agenticfeed namespace.

See examples/product.json for a complete example.

FieldTypeDescription
@contextstringhttps://schema.org
@typestringProduct
namestringProduct title
urlstringMerchant product page URL (UTM-tagged)
imagestringPrimary product image URL
categorystringProduct category
offersObjectschema.org Offer — price, currency, availability
agenticfeed.questionsArrayQuestions this product answers
agenticfeed.problemsArrayProblems this product solves
agenticfeed.use_casesArrayUse cases this product fits

5. UTM attribution

All product URLs in an agentic feed should carry UTM parameters so merchants can measure AI agent traffic in their analytics:

utm_source=agenticfeed&utm_medium=ai-agent

This lets merchants filter and report on sessions and orders that originated from an AI agent recommendation in Google Analytics, Shopify Analytics, or any platform that reads UTM parameters.


6. Link validation

The discovery tag in the merchant's <head> serves as proof of domain ownership before a feed goes live. A validator fetches the merchant's homepage, parses the <head>, and confirms:

  • A rel="agenticfeed" tag is present
  • Its href matches the expected feed URL for that merchant

This prevents one merchant from claiming another merchant's domain in a feed.


Agent Query API

The passive feed endpoints let AI agents crawl product data at their own pace. The Agent Query API is the active layer — an AI agent or application can send a natural language buyer intent and receive back a ranked list of matched products with reasons.

This is agent-to-agent communication. Instead of a human typing into a search box, one AI asks another AI to find the best matching products.

Endpoint

POST https://agenticfeed.ai/agent/query
Content-Type: application/json
Authorization: Bearer af_your_api_key

Authentication

One API key is required:

Agenticfeed API key — passed as a Bearer token in the Authorization header. This identifies who is making the request and controls access to the feed data. Generate one in Dashboard › API Keys for any paid plan (Growth and above). No approval needed — keys are available instantly.


Request

{
  "query": "ergonomic chair for someone with lower back pain, works from home 10 hours a day, small home office, budget under £300",
  "customer_guid": "a9a8378c94",
  "limit": 5
}
FieldTypeRequiredDescription
querystringYesNatural language description of what the buyer needs
customer_guidstringNoThe merchant feed to query. Defaults to the feed linked to your API key
limitintegerNoMaximum results to return (1–10, default 5)

Response

Returns a schema.org ItemList of matched Product entries, each with a match_reason explaining why that product fits the buyer's need.

Content-Type: application/ld+json

{
  "@context": "https://schema.org",
  "@type": "ItemList",
  "query": "ergonomic chair for back pain...",
  "numberOfItems": 3,
  "itemListElement": [
    {
      "@type": "Product",
      "position": 1,
      "name": "HM Seating Contessa Chair",
      "url": "https://merchant.com/contessa?utm_source=agenticfeed&utm_medium=ai-agent",
      "image": "https://merchant.com/images/contessa.jpg",
      "category": "office chairs",
      "offers": {
        "@type": "Offer",
        "price": "249.00",
        "priceCurrency": "GBP",
        "availability": "https://schema.org/InStock"
      },
      "agenticfeed": {
        "product_id": "b3f1e29a4c",
        "match_reason": "Matches adjustable lumbar support, compact footprint for small spaces, and falls within the stated budget."
      }
    }
  ]
}

The match_reason field is designed to be passed directly to the end buyer by the calling agent. It explains the recommendation in plain language without requiring the agent to do any additional reasoning.


Agent Card

The reference implementation publishes an A2A-compatible Agent Card at:

GET https://agenticfeed.ai/.well-known/agent.json

This file describes the agent's capabilities, accepted inputs, output format, and authentication requirements in a machine-readable format. AI platforms that implement Google's Agent-to-Agent (A2A) protocol can discover and call the query endpoint automatically using this card.


Examples

All examples are in the examples/ directory:

FileDescription
examples/feed.jsonComplete feed index
examples/product.jsonProduct detail with intent data
examples/questions.jsonQuestions endpoint
examples/problems.jsonProblems endpoint
examples/use-cases.jsonUse cases endpoint
examples/link-tag.htmlDiscovery tag snippet

Reference implementation

agenticfeed.ai is the hosted reference implementation of this standard.

It provides:

  • Automatic product catalogue import from Shopify, WooCommerce, Google Merchant Center, and website crawling
  • AI-generated intent data (questions, problems, use cases) per product
  • Daily stock and price synchronisation
  • Automatic discovery tag injection into Shopify themes via OAuth
  • UTM-tagged product URLs for attribution tracking
  • A merchant dashboard for managing feeds and subscriptions
  • Agent Query API at /agent/query for natural language product matching (included with paid plans)
  • A2A-compatible Agent Card at /.well-known/agent.json

Merchants who use agenticfeed.ai get a fully conformant agentic feed without writing any code. Developers building AI agents can query product data by buyer intent using the Agent Query API, included with all paid merchant plans.


Contributing

Issues and pull requests are welcome at github.com/bluestratus/agenticfeed.

The goal of this standard is to be minimal and stable. Proposals that add complexity without clear benefit to AI agents or merchants will not be merged. The best contributions are real-world implementation experience, edge cases, and corrections.


Licence

Published under the MIT Licence. Anyone is free to implement compatible agentic feeds using this standard without restriction.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentationRemote Endpoint

Details

Published June 13, 2026
Version 0.1.0
0 installs
Remote Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol · Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
6
Installs
6.5
Security
No ratings yet
Local

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
4
Installs
5.3
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
521
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
73
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

156.1K
Stars
38
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
22
Installs
10.0
Security
No ratings yet
Local