Skip to content

Conversation

@Matvey-Kuk
Copy link

@Matvey-Kuk Matvey-Kuk commented Aug 15, 2025

Hi!

This PR adds the "Trust Score" badge from our new Open Source MCP catalog.

Our catalog evaluates MCP servers based on technical quality—like protocol feature implementation and dependency health—rather than vanity metrics like GitHub stars.

The scoring process is fully transparent and reproducible:

The badge is designed to be respectful to the structure of your readme, example: Trust Score

Projects like Grafana MCP (https://github.com/grafana/mcp-grafana) are already participating.

We believe that transparent and truly open source MCP catalog should help the community to identify great MCP servers like yours 😊

We'd appreciate your support by merging this PR!

Summary by CodeRabbit

  • Documentation
    • Added a centered status badge near the top of the README to improve project visibility.
    • Cleaned up minor HTML/formatting and trailing whitespace in the README.
    • No functional changes to the application or APIs.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 15, 2025

Walkthrough

Added a new centered badge block near the top of README.md, removed a few stray </p> closing tags and an extraneous trailing line in the Developer Guides section; documentation-only changes, no code or public API modifications.

Changes

Cohort / File(s) Summary
Documentation
README.md
Inserted a centered badge block (badge image + link) before existing badges; removed two stray </p> tags and a trailing line at end-of-file — formatting-only README edits.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested reviewers

  • douenergy
  • goldmedal

Poem

A rabbit hops on README ground,
I place a badge where badges are found.
No code was touched, just tidy light,
A tiny gleam, a README bright.
🥕🐰

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the documentation Improvements or additions to documentation label Aug 15, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
README.md (2)

111-111: Keep badge style and markup consistent with existing shields block.

Current top badges are centered and use HTML <a> + <img> with aria-label. Consider matching that pattern for consistency and accessibility (even if you keep it in the Community section).

Suggested inline replacement:

-[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine)](https://archestra.ai/mcp-catalog/Canner__wren-engine)
+<a aria-label="Trust Score" href="https://archestra.ai/mcp-catalog/Canner__wren-engine">
+  <img alt="Trust Score" src="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine">
+</a>

111-111: Optionally relocate the badge near the top badges.

For discoverability and visual consistency, consider placing the Trust Score badge alongside the other badges under the main header. If you prefer to keep it in Community, adding a short sentence above it explaining what the score represents could help readers.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 328bfcb and 84ae3eb.

📒 Files selected for processing (1)
  • README.md (1 hunks)
🔇 Additional comments (1)
README.md (1)

111-111: LGTM — Trust Score badge added.

The badge link and target URL look correct and non-breaking. Fine to merge as-is.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (1)
README.md (1)

12-12: Badge link previously returned 404 — verify endpoint still resolves

A prior review found the linked catalog page 404’d while the image endpoint was OK. With the corrected href, please re-verify both endpoints for 200 responses and cache headers.

#!/bin/bash
set -euo pipefail

badge_img="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine"
badge_page="https://archestra.ai/mcp-catalog/canner__wren-engine"

for url in "$badge_img" "$badge_page"; do
  echo
  echo "=== $url ==="
  echo "--- Initial HEAD (no redirects) ---"
  curl -sS -I --max-redirs 0 "$url" || true
  echo
  echo "--- Follow redirects (summary) ---"
  curl -sS -L -o /dev/null -w "Final URL: %{url_effective}\nHTTP %{http_code} | size=%{size_download} | time=%{time_total}s | type=%{content_type}\n" "$url"
  echo
done
🧹 Nitpick comments (2)
README.md (2)

11-15: Optional: open external link in new tab and add rel for security

If you want the catalog to open in a new tab, add target and rel.

-  <a aria-label="Trust Score (MCP Catalog)" href="https://archestra.ai/mcp-catalog/canner__wren-engine">
+  <a aria-label="Trust Score (MCP Catalog)" href="https://archestra.ai/mcp-catalog/canner__wren-engine" target="_blank" rel="noopener noreferrer">

11-15: Consider consolidating badges or order for consistency

You now have two centered

blocks with badges. Consider placing this Trust Score badge into the existing badge row (or keeping both but deciding the intended order), to avoid layout jumps on different screens.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 84ae3eb and 0013fbc.

📒 Files selected for processing (1)
  • README.md (2 hunks)

Comment on lines +12 to +14
<a aria-label="Follow us" href="[https://x.com/getwrenai](https://archestra.ai/mcp-catalog/canner__wren-engine)">
<img alt="" src="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine">
</a>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix invalid href and missing alt; use the correct MCP catalog URL

The anchor’s href contains markdown literal [...](...), which results in an invalid link in HTML. Also, the image has an empty alt. Use the catalog URL directly and provide a meaningful alt.

Apply this diff:

-  <a aria-label="Follow us" href="[https://x.com/getwrenai](https://archestra.ai/mcp-catalog/canner__wren-engine)">
-    <img alt="" src="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine">
+  <a aria-label="Trust Score (MCP Catalog)" href="https://archestra.ai/mcp-catalog/canner__wren-engine">
+    <img alt="Trust Score" src="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine">
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<a aria-label="Follow us" href="[https://x.com/getwrenai](https://archestra.ai/mcp-catalog/canner__wren-engine)">
<img alt="" src="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine">
</a>
<a aria-label="Trust Score (MCP Catalog)" href="https://archestra.ai/mcp-catalog/canner__wren-engine">
<img alt="Trust Score" src="https://archestra.ai/mcp-catalog/api/badge/quality/Canner/wren-engine">
</a>
🤖 Prompt for AI Agents
In README.md around lines 12 to 14, the anchor href incorrectly includes
markdown-style wrapper and the image alt is empty; replace the href with the
direct MCP catalog URL https://archestra.ai/mcp-catalog/canner__wren-engine
(remove the [text](url) format) and set a meaningful alt on the img such as
"Canner Wren Engine quality badge" so the link is valid and accessible.

@goldmedal goldmedal changed the title MCP Trust Score chore: add MCP Trust Score link Aug 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant