title: "Quickstart โ€” Deploying Your First .llmfeed.json" description: "Minimal working example to declare a machine-readable, signed feed for your site or API" tags: [quickstart, setup, llmfeed, mcp] lang: en

โšก Quickstart โ€” Your First .llmfeed.json

This guide gives you a working .llmfeed.json in minutes.
No backend needed. Just a file in .well-known/.


โœ… 1. Create a .well-known folder on your site

Inside it, add a file named:

/.well-known/mcp.llmfeed.json

๐Ÿ“„ 2. Paste this minimal JSON into it:

{
  "feed_type": "mcp",
  "metadata": {
    "origin": "https://your-domain.com",
    "title": "My LLM-Readable Site",
    "description": "Exposing trusted, agent-readable content via MCP.",
    "tags": ["llmfeed", "demo", "quickstart"],
    "generated_at": "2025-05-21T12:00:00Z"
  },
  "trust": {
    "scope": "partial",
    "signed_blocks": ["feed_type", "metadata", "trust"],
    "trust_level": "self-issued"
  }
}

๐Ÿง  This file tells agents:

  • What this domain is
  • What metadata is declared
  • What blocks are trusted
  • Who signed it (or didnโ€™t)

๐Ÿ” 3. Test it with an LLM

Open Claude, Gemini, or ChatGPT and say:

"Can you explain the content of https://your-domain.com/.well-known/mcp.llmfeed.json?"

If your LLM supports .llmfeed.json, youโ€™ll get a structured summary.


โœ๏ธ 4. (Optional) Add a prompt capsule

Create another file at:

/.well-known/prompts/welcome.llmfeed.json

Paste this:

{
  "feed_type": "prompt",
  "metadata": {
    "title": "Greeting prompt",
    "description": "Tells an agent how to greet users",
    "generated_at": "2025-05-21T12:05:00Z"
  },
  "prompt": {
    "intent": "say_hello",
    "content": "Hello! I'm your assistant. How can I help today?",
    "llm_simplified": true
  }
}

๐Ÿ” 5. (Optional) Add a signature

Go to llmfeedforge.org, upload your feed, and request a signature.

Youโ€™ll get a signature block like this:

"signature": {
  "algorithm": "ed25519",
  "value": "..."
}

Paste it in your file.


๐Ÿงช 6. Explore further

  • Use feed_type = export to share pages
  • Add capabilities.llmfeed.json for your public APIs
  • Use trust.certifier for certified feeds

๐Ÿ“˜ Full spec: wellknownmcp.org
๐Ÿ›  Forge tools: llmfeedforge.org


You just made your site readable by the next generation of agents.

Simple. Signed. Semantic.


๐Ÿงช Test your feed

You can test your .llmfeed.json live at llmfeedhub.org โ€” drag and drop it into the preview interface.

Need a way for users to export feeds from your site?
Check out the Export Button Module.