|
Validate LLMFeed structure + Ed25519 signature verification npx @25xcodes/llmfeed-validator example.com |
Generate Ed25519 keys + sign LLMFeed JSON files npx @25xcodes/llmfeed-signer keygen
npx @25xcodes/llmfeed-signer sign feed.json |
|
Parse & validate llms.txt files with RAG utilities import { parseLLMSTxt, validateLLMSTxt } from '@25xcodes/llmstxt-parser' |
@25xcodes/llmfeed-health-monitor Feed health monitoring, crawling & outreach automation npx @25xcodes/llmfeed-health-monitor check example.com |
|
kiarashplusplus/webmcp-tooling-suite/packages/github-action Automated CI/CD validation with badge generation - uses: kiarashplusplus/webmcp-tooling-suite/packages/github-action@v1
with:
feed: '.well-known/mcp.llmfeed.json'
create-badge: 'true' |
|
A comprehensive web application for the Web Model Context Protocol (WebMCP) and LLMFeed ecosystem.
The WebMCP Tooling Suite addresses critical gaps identified in the MCP/WebMCP/LLMFeed ecosystem:
| Gap | Problem | Our Solution |
|---|---|---|
| Trust Validation | No automated validator for LLMFeed cryptographic signatures | Full Ed25519 signature verification with public key fetching |
| Context Indexing | Prompt bloat from large tool catalogs degrades LLM performance | RAG-optimized indexing with 50%+ token savings |
| Feed Discovery | Fragmented, manual feed discovery across the web | Universal feed directory with .well-known URI support |
-
Universal LLMFeed Validator β Comprehensive validation from URL, file upload, or paste
- Structural validation (feed_type, metadata, capabilities)
- JSON Schema conformance checking
- Full Ed25519 cryptographic signature verification
- Security scoring (0-100) with actionable remediation guidance
- Signature debugger for troubleshooting failed verifications
-
Feed Discovery & Analysis β Discover feeds from any URL or domain
- Auto-detection of
.well-known/mcp.llmfeed.jsonpaths - Capability extraction with JSON-RPC invocation examples
- Token estimation for context planning
- Auto-detection of
-
Feed Directory β Centralized, public directory of LLMFeeds
- "Top Feeds" (by capabilities) and "Latest Published" sections
- Scraper-friendly JSON links with data attributes
- GitHub authentication for publishing (prevents spam)
- Curated feeds from verified WebMCP sites
-
Submit Your Feed β Self-service feed submission workflow
- 3-step process: Validate β Sign In β Submit
- Automatic feed validation with score
- Embeddable verification badges (verified, signed, score)
- HTML, Markdown, and SVG badge formats
-
Universal Archive β Versioned feed archival with persistence
- Timestamped snapshots for any feed URL
- Version history browsing and comparison
- Export/restore capabilities
- Immutable versions for cryptographic trust
-
RAG Indexing Preparation β Transform feeds for vector databases
- Structured output optimized for embedding models
- Token efficiency metrics and savings calculation
- Export to Pinecone, Weaviate, Chroma-compatible format
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β WebMCP Tooling Suite β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
β βDirectory β βValidator β βDiscovery β β Archive β β
β β β β β β β β β β
β β β’ Browse β β β’ Parse β β β’ Fetch β β β’ Store β β
β β β’ Search β β β’ Verify β β β’ Analyzeβ β β’ Versionβ β
β β β’ Curatedβ β β’ Score β β β’ Inspectβ β β’ Export β β
β ββββββββββββ ββββββββββββ ββββββββββββ ββββββββββββ β
β β β
β ββββββββββββ β
β β Submit β β Self-service feed submission + badge generator β
β β β’ Submit β β
β β β’ Badges β β
β ββββββββββββ β
β β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Core Library (llmfeed.ts) β β
β β β’ Ed25519 verification β’ Schema validation β β
β β β’ RAG preparation β’ Token estimation β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β RAG Prep Tool β β
β β β Vector-ready embeddings for semantic search β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
The validator implements the full Ed25519 trust verification chain:
Feed β Trust Block β Public Key Hint β Signature Verification
β β β
signed_blocks Fetch PEM key Verify against
enumeration from URL canonical payload
Signature verification protects against:
- Tool Poisoning β Malicious tool definition modifications
- Tool Shadowing β Fake tools intercepting legitimate calls
- Supply Chain Attacks β Compromised feed distributions
- Framework: React 18 + TypeScript + Vite
- UI: Radix UI primitives + Tailwind CSS v4 + shadcn/ui
- Storage: localStorage (default) + GitHub Gist sync (optional)
- Auth: GitHub OAuth (optional, via Cloudflare Worker)
- Crypto: Web Crypto API (native Ed25519)
- State: @tanstack/react-query + localStorage
This is a fully static site that can be deployed to:
- GitHub Pages - Zero configuration needed
- Cloudflare Pages - Connect repo and deploy
- Netlify - Automatic deploys from GitHub
For authenticated publishing to the directory, deploy a Cloudflare Worker:
# In a separate worker project
npx wrangler init webmcp-authSet these environment variables:
VITE_GITHUB_OAUTH_URL- OAuth initiation endpointVITE_GITHUB_TOKEN_URL- Token exchange endpoint
# Clone the repository
git clone https://github.com/kiarashplusplus/webmcp-tooling-suite.git
cd webmcp-tooling-suite
# Install dependencies
npm install
# Start development server
npm run dev
# Build all packages
npm run build:packagesThe tooling suite includes standalone packages for CI/CD integration:
Validate LLMFeed files with full Ed25519 signature verification.
npm install -g @25xcodes/llmfeed-validator
llmfeed-validate https://25x.codes/.well-known/mcp.llmfeed.json
llmfeed-validate ./feed.json --verbose --jsonGenerate Ed25519 keypairs and sign LLMFeed files.
npm install -g @25xcodes/llmfeed-signer
llmfeed-sign keygen -o ./keys -n mysite
llmfeed-sign sign feed.json --key ./keys/mysite.private.pem \
--public-url https://example.com/.well-known/public.pemGitHub Action for automated feed validation in CI/CD pipelines with dynamic badge generation.
# .github/workflows/validate-feed.yml
name: Validate LLMFeed
on:
push:
paths: ['**/*.llmfeed.json']
jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: kiarashplusplus/webmcp-tooling-suite/packages/github-action@v1
with:
feed: '.well-known/mcp.llmfeed.json'
skip-signature: 'true'
create-badge: 'true'
- name: Commit badge
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .github/badges/
git diff --staged --quiet || git commit -m "update badge" && git pushAdd the dynamic badge to your README:
[](https://your-site/.well-known/mcp.llmfeed.json)Features:
- β Automatic PR checks for feed changes
- β Ed25519 signature verification
- β Dynamic shields.io badge (SVG + JSON)
- β Security score output (0-100)
- β Color-coded badges (green 80+, yellow 40+, red invalid)
See packages/github-action/README.md for complete documentation.
Parse and validate llms.txt files with RAG utilities.
import { parseLLMSTxt, validateLLMSTxt, fetchLLMSTxt } from '@25xcodes/llmstxt-parser'
// Parse markdown
const doc = parseLLMSTxt(markdown)
console.log(doc.title, doc.links)
// Validate
const result = validateLLMSTxt(doc)
console.log(result.valid, result.score)
// Fetch from URL or domain
const doc = await fetchLLMSTxt('example.com')Features:
- π Parse llms.txt markdown into structured documents
- β Validate per llmstxt.org specification with quality scoring
- π Discover llms.txt from well-known paths
- π― RAG utilities: token estimation, format conversion, link extraction
- π Zero runtime dependencies, works in Node.js and browsers
See packages/llmstxt-parser/README.md for complete documentation.
Feed health monitoring, crawling, and outreach automation.
npm install -g @25xcodes/llmfeed-health-monitor
llmfeed-health check https://example.com/.well-known/mcp.llmfeed.json
llmfeed-health crawl https://site1.com https://site2.com
llmfeed-health discover example.com
llmfeed-health report https://example.com/feed.json --output report.htmlFeatures:
- π Feed crawler with opt-out detection
- π HTML & JSON health reports
- π Multi-channel notifications (GitHub Issues, Email, Twitter)
- β° Scheduled monitoring with cron
See packages/health-monitor/README.md for complete documentation.
-
CLI Validator Package β
@25xcodes/llmfeed-validator- Full Ed25519 signature verification
- Structural and schema validation
- Security scoring with detailed diagnostics
- JSON output mode for CI/CD scripting
-
Feed Signing Tool β
@25xcodes/llmfeed-signer- Ed25519 keypair generation (PKCS#8 format)
- Feed signing with configurable
signed_blocks - PEM and base64 key formats
- CI/CD-friendly CLI interface
-
GitHub Action β
@25xcodes/llmfeed-action- Automatic PR checks for feed changes
- Ed25519 signature verification in CI
- Dynamic SVG badge generation
- Outputs for downstream workflow steps
-
Feed Health Monitor β
@25xcodes/llmfeed-health-monitor- Feed crawler with opt-out detection
- HTML & JSON health reports
- GitHub Issues / Email / Twitter notifications
- Scheduled monitoring with cron
-
LLMS.txt Parser β
@25xcodes/llmstxt-parser- Parse llms.txt per llmstxt.org specification
- Validation with quality scoring
- Well-known path discovery
- RAG utilities (tokens, format, links)
-
Feed Schema Generator
- Generate LLMFeed from OpenAPI/Swagger specs
- Import from existing MCP server definitions
- TypeScript type generation from feed schemas
- Reduce manual feed authoring friction
-
Multi-Feed Aggregator
- Combine multiple feeds into unified index
- Namespace collision detection
- Cross-feed capability search
- Agent-optimized merged output
This project validates against the 25x.codes reference feed:
https://25x.codes/.well-known/mcp.llmfeed.json
Key features demonstrated:
- Full Ed25519 signature with trust block
- JSON-RPC 2.0 invocation pattern
- Typed capabilities with input/output schemas
- Agent guidance with fallback instructions
- Validator User Guide β Detailed validation feature documentation
- Validator Status β Implementation completeness report
- Product Requirements β Full PRD with design specifications
| Standard | Status | Description |
|---|---|---|
| MCP | Compatible | Anthropic's Model Context Protocol (JSON-RPC 2.0) |
| WebMCP | Compatible | W3C Web ML Community Group proposal |
| LLMFeed | Primary Focus | Static file-based feed specification |
Contributions are welcome! Areas where help is especially needed:
- Additional embedding model support
- Feed schema versioning system
- Internationalization (i18n)
- Accessibility improvements
- E2E test coverage
This project is licensed under the MIT License - see the LICENSE file for details.
Built for the AI Agent ecosystem
Ensuring trust and efficiency in LLM tool discovery