CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
healersfind-alt avatar

Organic Web Checker

healersfind-alt/organic-web-checker-mcp
authHTTPregistry active
Summary

Lets Claude cross-reference what a certified organic operation claims on its website against live USDA Organic Integrity Database certificate data. Exposes two tools: check_organic_compliance runs a full audit and returns verified, flagged, and caution-level product matches, while get_oid_certificate pulls the current cert without a website scan. Built for certifying agents and compliance consultants who need to spot when organic product representations don't appear on the operation's certificate. Requires an API key from organicwebchecker.com and consumes 1 credit per compliance check. Connects over streamable HTTP transport and surfaces item-level discrepancies with context on NOP regulations like retail exemption and handler scope rules.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Organic Web Checker — MCP Server

Cross-reference certified organic operation websites against live USDA Organic Integrity Database (OID) certificate data. Identifies organic product representations that may not be on the certificate of organic operation.

Status: Live · Remote HTTP MCP server · JSON-RPC 2.0 · API key required

  • Endpoint: https://www.organicwebchecker.com/mcp
  • Website: organicwebchecker.com
  • Protocol: MCP 2024-11-05

What it does

Organic Web Checker (OWC) compares products marketed as organic on a certified operation's public website against the operation's live USDA OID certificate. It surfaces:

  • ✅ Verified — product representation found on the cert
  • 🔴 Flagged — organic representation with no matching cert item
  • 🟡 Caution — close name variation, processing-form question, or grouped-scope match requiring review by the certifying agent

Built for organic certifying agents, compliance consultants, and certified operations doing self-review. Decision-support tool — not a compliance determination. Manual review of flagged items is required.


Tools

check_organic_compliance

Runs a full website-vs-OID compliance check and returns a structured report.

ParameterTypeRequiredDescription
operation_namestringyesOperation name exactly as listed in USDA OID
website_urlstringyesFull URL of the operation's website
force_freshbooleannoBypass 24-hour OID cache and pull live from USDA (default false)

Returns: structured JSON report with verified, flagged, caution, marketing lists, cert metadata, and item-level URLs.

Cost: 1 credit per successful run.

get_oid_certificate

Fetches an operation's current USDA OID certificate without running a website check.

ParameterTypeRequiredDescription
operation_namestringyesOperation name as listed in USDA OID

Returns: certified products, certifier, status, location, scopes.


Connect

Claude Desktop / Cursor / other MCP clients

{
  "mcpServers": {
    "organic-web-checker": {
      "url": "https://www.organicwebchecker.com/mcp",
      "headers": {
        "X-API-Key": "owc_live_..."
      }
    }
  }
}

Raw JSON-RPC

curl -X POST https://www.organicwebchecker.com/mcp \
  -H "Content-Type: application/json" \
  -H "X-API-Key: owc_live_..." \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "check_organic_compliance",
      "arguments": {
        "operation_name": "Example Organic Farm LLC",
        "website_url": "https://example.com"
      }
    }
  }'

The server implements initialize, tools/list, and tools/call. Tools are discovered automatically by MCP-compatible clients on connect.


Get an API key

  1. Create an account at organicwebchecker.com
  2. Visit organicwebchecker.com/api to generate a key (prefix owc_live_)
  3. Buy credits at organicwebchecker.com/pricing (or use a promo code if you have one)

Each successful check_organic_compliance call deducts 1 credit. get_oid_certificate is free of credit cost. Rate limit: 60 checks/hour per key.


Regulatory context

OWC checks public-facing organic representations against publicly available OID certificate information. It acknowledges:

  • Retail exemption — 7 CFR §205.101(a)(2)
  • Handler/OSP scope — 7 CFR §205.201; detailed product coverage held by the certifying agent
  • SOE rule (March 19, 2024) — brokers, traders, importers, exporters now require handler certification

Results are decision-support only. Final compliance determinations are made by certifying agents.


License

This repository (server metadata and documentation) is licensed under the MIT License — see LICENSE.

The Organic Web Checker service itself is proprietary software. Method protected by U.S. provisional patent application No. 64053105.


Operator

Organic Web Checker LLC (Florida) Inventor / Founder: Christian Strickland Contact: hello@organicwebchecker.com

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
Data & Analytics
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 12, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
heisee avatar
Letsclarify Mcp

io.github.heisee/letsclarify-mcp

Human-in-the-Loop API: AI agents create forms, share URLs with humans, get JSON back.
helloderekg avatar
Bytario

io.github.helloderekg/bytario

40 MCP tools for image, PDF, QR, barcode, data, text, color, and render operations.
heyzod avatar
Mansa African Markets

io.github.heyzod/mansa-african-markets

Live African stock market data — NGX, GSE, NSE, JSE, BRVM and 8 more. Prices, indices and movers.
hezeclark avatar
Devkits

io.github.hezeclark/devkits

12 local developer tools: JSON, Base64, JWT, regex, hash, UUID, Markdown, diff, cron.
hiroshic9-png avatar
Transcode

io.github.hiroshic9-png/transcode

Japan market intelligence — 22 MCP tools, 10 government/exchange data sources
implem avatar
Pleasanter MCP

io.github.implem/pleasanter-mcp

Pleasanter MCP - You can perform data operations on Pleasanter directly from VSCode