Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Trust Oracle
T
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:08:41 AM

Trust Oracle

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Independent A-F trust grade for any MCP server, watched for drift. Free, never for sale.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "trust-oracle": {
      "command": "npx",
      "args": [
        "-y",
        "trust-oracle"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

wmcp.sh

Add any website to Claude, Cursor, or Codex as agent-callable MCP tools β€” in one line of config. No per-server build, no SDK.

Live MIT License MCP compatible TypeScript New1Direction/webmcp-anything MCP server

wmcp.sh β€” paste any URL, get agent-callable MCP tools in Claude/Cursor/Codex
β–Ά Watch the 30-sec demo β€” paste a URL β†’ tools appear β†’ agent calls add_to_cart.

wmcp.sh is a real, spec-compliant MCP server (JSON-RPC 2.0 over Streamable HTTP) that turns any URL into agent-callable tools β€” Shopify product pages, OpenAPI specs, JSON-LD pages, OAuth-protected APIs. Every other MCP server is one-per-service and hand-built; wmcp is one endpoint that adapts to whatever URL you point it at. Paste a config line and your agent can read prices, list variants, or call an API on a site that ships no MCP server of its own.

Live now: wmcp.sh Β· Directory Β· Blog Β· /llms.txt


30-second quickstart

Connect any URL to your MCP client (the flagship)

Point any MCP client β€” Claude Code, Claude Desktop, Cursor, Codex, Cline, VS Code β€” at a per-URL endpoint: /mcp/u/<base64url-of-your-url>. That's the whole install. The server exposes that page's extracted tools natively (tools/list + tools/call):

config.json
{
  "mcpServers": {
    "allbirds": {
      "type": "http",
      "url": "https://wmcp.sh/mcp/u/aHR0cHM6Ly93d3cuYWxsYmlyZHMuY29tL3Byb2R1Y3RzL21lbnMtd29vbC1ydW5uZXJz"
    }
  }
}

That base64url string decodes to https://www.allbirds.com/products/mens-wool-runners. Encode your own:

bash
node -e "process.stdout.write(Buffer.from('https://your-url.example').toString('base64url'))"

Compose several sites into one MCP server β€” repeat the url param; tool names are namespaced per host (site_a__add_to_cart):

config.json
{ "mcpServers": { "wmcp": { "type": "http", "url": "https://wmcp.sh/mcp/url?url=https://site-a.example&url=https://site-b.example" } } }

tools/list (discovery) is free. tools/call (live execution) needs a paid key, passed as a Bearer header:

config.json
{ "mcpServers": { "wmcp": { "type": "http", "url": "https://wmcp.sh/mcp/u/<base64url>", "headers": { "Authorization": "Bearer webmcp_live_…" } } } }

type may be "http" or "streamable-http" (same transport). For Claude Desktop builds without remote-MCP support, bridge with npx mcp-remote <url>. Full walkthrough: /how-to/install-claude-desktop-mcp.

Or just hit the REST API (no client, no key for reads)

bash
# any URL β†’ MCP-shaped tool list
curl 'https://wmcp.sh/api/v1/tools?url=https://www.allbirds.com/products/mens-wool-runners'

Returns a JSON tool list in the Claude tool_use / OpenAI function_call / MCP shape β€” get_price, add_to_cart, list_variants β€” that any agent can invoke.


How it works

A 5-tier extraction chain turns most URLs into tools with zero per-site work. Each tier is tried in order; the first that detects the URL wins. The last tier is an LLM fallback that produces best-effort tools and caches the result.

Code
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  URL in β†’                                          β”‚
β”‚    1. Shopify       (~4M storefronts, <50ms)       β”‚
β”‚    2. JSON-LD       (schema.org Product, etc.)     β”‚
β”‚    3. OpenAPI       (any 3.x / Swagger 2.0 β†’ tools)β”‚
β”‚    4. Provider      (Stripe, GitHub, Slack…)       β”‚
β”‚    5. LLM-fallback  (Claude Haiku, cached 30d)     β”‚
β”‚  β†’ MCP tools out                                   β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Cached on Cloudflare KV; sub-50ms on a cache hit. Discovery (tools/list) is free; live execution (tools/call) runs through the same engine and needs a paid key. For sites that block bot fetches or hydrate client-side from authed APIs, a Chrome extension extracts schemas in your browser and pushes them back to the shared cache. Full design in docs/ARCHITECTURE.md.


What makes it different

Today, "an MCP server for X" means someone wrote, built, and deployed a dedicated server for service X. There are hundreds of them, each one a separate repo and a separate install.

wmcp inverts that:

Hand-built MCP serverwmcp.sh
CoverageOne service per serverAny URL, one endpoint
SetupClone, build, configure, deployPaste one config line
New targetWrite & ship a new serverEncode the URL β€” done
Auth'd upstreamsBake credentials into each serverShared OAuth/credential vault proxy at /mcp/<provider>
DiscoveryFind/trust each repoPublic directory of what's already cached

There's also a saved toolset endpoint β€” /mcp/set/<id> β€” that bundles a curated set of URLs behind one stable MCP server (a Pro feature). It's genuinely novel: instead of one-per-service, wmcp turns arbitrary URLs into MCP tools on demand.


Directory, SDKs & extension

  • Directory β€” every URL the community has indexed, browsable and searchable: wmcp.sh/directory. Submit your site (free): wmcp.sh/directory/submit.
  • OAuth-vault proxy β€” connect an OAuth-protected upstream once; call it as MCP from any client: https://wmcp.sh/mcp/<provider> (Google, GitHub, Slack, Notion, Linear, Discord, Stripe, Anthropic).
  • Python SDK β€” pip install wmcp. Native fetch-style client, zero required deps.
  • JavaScript/TypeScript SDK β€” npm install @wmcp/sdk with one-line adapters for @wmcp/sdk/anthropic, @wmcp/sdk/openai, @wmcp/sdk/langchain, and @wmcp/sdk/vercel-ai.
server.ts
import { WmcpClient } from "@wmcp/sdk";
import { toAnthropicTools } from "@wmcp/sdk/anthropic";

const client = new WmcpClient(); // anonymous = 100 reads/day per IP
const tools = toAnthropicTools(await client.tools("https://www.allbirds.com/products/mens-wool-runners"));
  • Chrome extension β€” for SPA / bot-walled / auth-walled sites. Extracts client-side, pushes cached schemas back to the hosted API so the next person gets them instantly β€” even if they never install it.

Pricing

Two separate ladders. Self-serve API plans for anyone, and a done-for-you service if you want a custom adapter built and run for you.

Self-serve API (manage at /dashboard):

TierCostWhat you get
Free$0tools/list + REST reads, IP-rate-limited, no live execute
Builder$39/moEntry paid tier: live tools/call execute, OAuth vault, higher quotas
Pro$99/moHigh quotas, priority cache, full execute + vault
Reseller$299/moHigh-volume quotas, email support

Done-for-you service (/managed):

TierCostWhat you get
Starter$499 one-timeCustom adapter built for your site + verified directory badge
Managed Retainer$999/moOngoing maintenance, featured listing, white-label MCP at mcp.yourbrand.com
Enterprise$4,999+/moSelf-hosted deployment + SLA + dedicated support

What's in the repo

server.ts
.
β”œβ”€β”€ adapters/                Shared adapter library (worker + extension import the same files)
β”‚   β”œβ”€β”€ shopify.js           ~4M storefronts, read + add_to_cart
β”‚   β”œβ”€β”€ jsonld.js            generic schema.org Product
β”‚   β”œβ”€β”€ openapi.js           any OpenAPI 3.x / Swagger 2.0 β†’ tools
β”‚   β”œβ”€β”€ llm.js               Claude Haiku fallback
β”‚   β”œβ”€β”€ CONTRACT.md          the detect() / extract() / actions interface
β”‚   β”œβ”€β”€ _template/           starter scaffold for new adapters
β”‚   └── _test/run.mjs        node:test harness, zero deps
β”‚
β”œβ”€β”€ worker/                  Hosted API + MCP server at wmcp.sh
β”‚   └── src/                 Hono routes, mcp_server.ts, OAuth, billing, SEO pages, token vault
β”‚
β”œβ”€β”€ extension/               Chrome MV3 extension (cache-back path)
β”‚
β”œβ”€β”€ sdks/
β”‚   β”œβ”€β”€ python/wmcp/         pip install wmcp
β”‚   └── javascript/src/      @wmcp/sdk (+ anthropic / openai / langchain / vercel-ai adapters)
β”‚
β”œβ”€β”€ docs/                    QUICKSTART Β· ARCHITECTURE Β· API Β· SELF_HOSTING
β”œβ”€β”€ launch/                  Launch artifacts (HN draft, registry submissions, demo)
β”œβ”€β”€ AGENTS.md                rules for AI coding agents working on this repo
β”œβ”€β”€ CONTRIBUTING.md          how to send a PR
β”œβ”€β”€ ADAPTERS_WANTED.md       open targets, ranked by difficulty
└── LICENSE                  MIT

Contributing

New adapters are welcome via PR. The whole point is that adding a site shouldn't mean building a new server.

bash
git clone https://github.com/New1Direction/webmcp-anything
cd webmcp-anything
cp -r adapters/_template adapters/mysite
# edit adapters/mysite/adapter.js β€” implement detect() + extract()
node adapters/_test/run.mjs

Adapter files are plain ES modules with zero npm deps so the same file runs in Cloudflare Workers, Chrome MV3 service workers, and Node 18+. Read CONTRIBUTING.md, the adapter contract, and open targets in ADAPTERS_WANTED.md. If you're an AI coding agent, read AGENTS.md first.


Status

  • βœ… Production at wmcp.sh (Cloudflare Workers + KV)
  • βœ… Spec-compliant MCP server (JSON-RPC 2.0 over Streamable HTTP) β€” per-URL, multi-URL, and saved-toolset endpoints
  • βœ… 5-tier extraction chain + free REST API (/api/v1/tools)
  • βœ… OAuth-vault proxy for 8+ providers (Google, GitHub, Slack, Notion, Linear, Discord, Stripe, Anthropic)
  • βœ… Public directory (submit, badge, verified/featured)
  • βœ… Python (pip install wmcp) + JS (@wmcp/sdk) SDKs and a Chrome extension
  • 🟑 Stripe billing wired; self-serve dashboard upgrade in progress
  • 🟑 Registry submissions in progress β€” see launch/registry/SUBMISSION_PLAYBOOK.md

Found a bug? Open an issue. Have a site we should support? ADAPTERS_WANTED.md.


License

MIT. See LICENSE. Repo: github.com/New1Direction/webmcp-anything.

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    πŸ’» Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’

Frequently Asked Questions about Trust Oracle

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "trust-oracle": { "command": "npx", "args": ["-y", "trust-oracle"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewTrust Oracle AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/trust-oracle?style=directory)](https://allmcps.com/mcp/trust-oracle)
HTML Embed
<a href="https://allmcps.com/mcp/trust-oracle"><img src="https://allmcps.com/api/badge/trust-oracle?style=directory" alt="Trust Oracle on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Trust Oracle β†’Install in Claude DesktopInstall in CursorInstall in VS Code