Skip to content

community: add Xquik to MCP library#5069

Open
kriptoburak wants to merge 2 commits into
maximhq:devfrom
kriptoburak:codex/add-xquik-mcp-library
Open

community: add Xquik to MCP library#5069
kriptoburak wants to merge 2 commits into
maximhq:devfrom
kriptoburak:codex/add-xquik-mcp-library

Conversation

@kriptoburak

Copy link
Copy Markdown

Summary

Adds Xquik to the community MCP Library catalog as a remote HTTP MCP server.

Changes

  • Added a single Xquik entry to community/mcp-library/servers.json.
  • Set connection_type to http with the public MCP endpoint.
  • Declared header-based auth with the Authorization header name only.
  • Included public docs, icon, publisher, and search tags.

Type of change

  • Bug fix
  • Feature
  • Refactor
  • Documentation
  • Chore/CI

Affected areas

  • Core (Go)
  • Transports (HTTP)
  • Providers/Integrations
  • Plugins
  • UI (React)
  • Docs

How to test

Validated locally:

  • jq empty community/mcp-library/servers.json
  • AJV draft-7 validation against community/mcp-library/schema.json
  • Python JSON Schema validation against community/mcp-library/schema.json
  • Git diff whitespace check
  • Live checks for the Xquik MCP docs, icon URL, and unauthenticated MCP endpoint response

Duplicate checks:

  • Searched community/mcp-library/servers.json for Xquik, xquik, and x-twitter-scraper.
  • Searched open and closed PRs and issues for Xquik, xquik, and x-twitter-scraper.

Screenshots/Recordings

Not applicable. This is a catalog metadata change.

Breaking changes

  • Yes
  • No

Related issues

No linked issue.

Security considerations

The entry lists only the required Authorization header name. It does not include tokens, API keys, private URLs, or personal data.

Checklist

  • I read docs/contributing/README.md and followed the guidelines
  • I added/updated tests where appropriate
  • I updated documentation where needed
  • I verified builds succeed (Go and UI)
  • I verified the CI pipeline passes locally if applicable

@coderabbitai

coderabbitai Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: aaab94eb-a41f-4031-8272-b9e7cb666691

📥 Commits

Reviewing files that changed from the base of the PR and between b3f79c1 and 1e9e7cb.

📒 Files selected for processing (1)
  • community/mcp-library/servers.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • community/mcp-library/servers.json

📝 Walkthrough

Summary by CodeRabbit

  • New Features
    • Added a new MCP server entry, Xquik, to the library.
    • The listing includes connection details, authentication requirements, documentation, publisher info, and capability tags for X/Twitter-related automation.

Walkthrough

A new server entry for Xquik was added to community/mcp-library/servers.json, with an HTTP endpoint, required Authorization header authentication, and metadata including docs URL, publisher, tags, and icon URL.

Changes

Xquik MCP Server Registration

Layer / File(s) Summary
New server entry
community/mcp-library/servers.json
Added a new "Xquik" entry to the servers array with HTTP connection details, header-based auth requiring the Authorization header, and metadata (icon_url, docs_url, publisher, tags).

Estimated code review effort: 1 (Trivial) | ~3 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title is concise and accurately describes the main change: adding Xquik to the MCP library.
Description check ✅ Passed The description follows the template well and covers summary, changes, testing, security, and other required sections.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

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

@greptile-apps

greptile-apps Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Confidence Score: 5/5

This looks safe to merge.

  • No blocking issues found in the changed code.

Important Files Changed

Filename Overview
community/mcp-library/servers.json Adds the Xquik HTTP MCP server catalog entry with header auth and public metadata.

Reviews (2): Last reviewed commit: "Match MCP library field order" | Re-trigger Greptile

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
community/mcp-library/servers.json (1)

2280-2300: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Field ordering inconsistent with file convention.

All other entries place icon_url as the last field (after tags). The Xquik entry places it before docs_url, publisher, and tags. While JSON is unordered, matching the established convention improves consistency across the 80+ entries.

♻️ Suggested field reordering
     {
       "name": "Xquik",
       "description": "Connect AI tools to Xquik for X data workflows including tweet search, user lookup, media download, monitoring, and writes. Hosted remotely by Xquik.",
       "category": "Developer Tools",
       "connection_type": "http",
       "connection_url": "https://xquik.com/mcp",
       "auth_type": "headers",
       "required_header_keys": [
         "Authorization"
       ],
-      "icon_url": "https://xquik.com/icons/mcp/xquik.png",
       "docs_url": "https://docs.xquik.com/mcp/overview",
       "publisher": "Xquik",
       "tags": [
         "x",
         "twitter",
         "social",
         "tweets",
         "automation"
-      ]
+      ],
+      "icon_url": "https://xquik.com/icons/mcp/xquik.png"
     }
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@community/mcp-library/servers.json` around lines 2280 - 2300, The Xquik entry
in the servers registry is using a field order that doesn’t match the
established convention. Reorder the object in the same pattern used by the other
entries in servers.json, keeping Xquik’s fields consistent by moving icon_url to
the end after tags while preserving the existing values for docs_url, publisher,
and the rest of the entry.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@community/mcp-library/servers.json`:
- Around line 2280-2300: The Xquik entry in the servers registry is using a
field order that doesn’t match the established convention. Reorder the object in
the same pattern used by the other entries in servers.json, keeping Xquik’s
fields consistent by moving icon_url to the end after tags while preserving the
existing values for docs_url, publisher, and the rest of the entry.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 967f8523-1bee-4bcf-a860-403aa46d392b

📥 Commits

Reviewing files that changed from the base of the PR and between c1dc9bf and b3f79c1.

📒 Files selected for processing (1)
  • community/mcp-library/servers.json

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 9, 2026
@CLAassistant

Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants