chore: import upstream snapshot with attribution
Component Security Validation / Security Audit (push) Has been cancelled
Deploy to Cloudflare Pages / deploy (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:38:58 +08:00
commit bb5c75ce05
8824 changed files with 1946442 additions and 0 deletions
@@ -0,0 +1,9 @@
{
"mcpServers": {
"android-mcp": {
"description": "MCP Server for interacting with Android devices. Control, inspect, and automate Android devices via ADB through Claude.",
"command": "uvx",
"args": ["--python", "3.13", "android-mcp"]
}
}
}
@@ -0,0 +1,11 @@
{
"mcpServers": {
"aks": {
"description":"The AKS-MCP is a Model Context Protocol (MCP) server that enables AI assistants to interact with Azure Kubernetes Service (AKS) clusters. It serves as a bridge between AI tools (like GitHub Copilot, Claude, and other MCP-compatible AI assistants) and AKS, translating natural language requests into AKS operations and returning the results in a format the AI tools can understand.",
"command": "<path of binary aks-mcp>",
"args": [
"--transport", "stdio"
]
}
}
}
@@ -0,0 +1,14 @@
{
"mcpServers": {
"mcp-server-box": {
"description":"The Box MCP Server is a Python project that integrates with the Box API to perform various operations such as file search, text extraction, AI-based querying, and data extraction. It leverages the box-sdk-gen library and provides a set of tools to interact with Box files and folders.",
"command": "uv",
"args": [
"--directory",
"/path/to/mcp-server-box",
"run",
"src/mcp_server_box.py"
]
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"chrome-devtools": {
"description": "A Model Context Protocol server for interacting with Chrome DevTools, enabling browser automation, debugging, and performance analysis capabilities.",
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}
@@ -0,0 +1,13 @@
{
"mcpServers": {
"circleci-mcp-server": {
"description": "Integrate CircleCI build and deployment pipeline management with your Claude Code workflow. Monitor builds, trigger deployments, and access project insights.",
"command": "npx",
"args": ["-y", "@circleci/mcp-server-circleci"],
"env": {
"CIRCLECI_TOKEN": "your-circleci-token",
"CIRCLECI_BASE_URL": "https://circleci.com"
}
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"codacy": {
"description":"MCP Server for the Codacy API, enabling access to repositories, files, quality, coverage, security and more.",
"command": "npx",
"args": ["-y", "@codacy/codacy-mcp"],
"env": {
"CODACY_ACCOUNT_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"context7": {
"description": "Context7 by Upstash pulls up-to-date, version-specific documentation and code examples straight from the source and injects them into your prompt. Add 'use context7' to any prompt to activate.",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"],
"env": {
"CONTEXT7_API_KEY": "<your-context7-api-key>"
}
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"devplan": {
"type": "sse",
"url": "https://mcp.devplanmcp.store/sse"
}
}
}
@@ -0,0 +1,13 @@
{
"mcpServers": {
"dynatrace-mcp-server": {
"description":"Manage and interact with the Dynatrace Platform for real-time observability and monitoring.",
"command": "npx",
"args": ["-y", "@dynatrace-oss/dynatrace-mcp-server@latest"],
"env": {
"DT_PLATFORM_TOKEN": "",
"DT_ENVIRONMENT": ""
}
}
}
}
@@ -0,0 +1,18 @@
{
"mcpServers": {
"elasticsearch-mcp-server": {
"description":"MCP server for connecting to Elasticsearch data and indices. Supports search queries, mappings, ES|QL, and shard information through natural language interactions.",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "ES_URL", "-e", "ES_API_KEY",
"docker.elastic.co/mcp/elasticsearch",
"stdio"
],
"env": {
"ES_URL": "<elasticsearch-cluster-url>",
"ES_API_KEY": "<elasticsearch-API-key>"
}
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"Figma Dev Mode MCP": {
"description":"The Dev Mode MCP server brings Figma directly into your workflow by providing important design information and context to AI agents generating code from Figma design files.",
"url": "http://127.0.0.1:3845/mcp"
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"firecrawl-mcp": {
"description": "A Model Context Protocol (MCP) server implementation that integrates with Firecrawl for web scraping capabilities.",
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": {
"FIRECRAWL_API_KEY": "YOUR-API-KEY"
}
}
}
}
@@ -0,0 +1,13 @@
{
"mcpServers": {
"firefly": {
"description": "Connect to Firefly AI services for advanced AI-powered development assistance, code analysis, and intelligent suggestions directly in your Claude Code environment.",
"command": "npx",
"args": ["-y", "@fireflyai/firefly-mcp"],
"env": {
"FIREFLY_ACCESS_KEY": "your_access_key",
"FIREFLY_SECRET_KEY": "your_secret_key"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"flatten": {
"description": "Flatten Claude Code sessions: moves bulky tool output into a sidecar file and keeps every prompt and event verbatim, so the same conversation resumes at a lower token count instead of being compacted into a lossy summary. Reversible and crash-safe. Optional ANTHROPIC_API_KEY enables exact token counting.",
"command": "npx",
"args": ["-y", "flatten-mcp@latest"]
}
}
}
@@ -0,0 +1,19 @@
{
"mcpServers": {
"github-official": {
"description": "GitHub's official MCP Server. Interact with GitHub repositories, issues, pull requests, and more directly from Claude.",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<your-github-token>"
}
}
}
}
@@ -0,0 +1,15 @@
{
"mcpServers": {
"grafana": {
"description": "A Model Context Protocol server for interacting with Grafana dashboards and monitoring. Supports both self-hosted Grafana instances and Grafana Cloud.",
"command": "mcp-grafana",
"args": [],
"env": {
"GRAFANA_URL": "http://localhost:3000",
"GRAFANA_SERVICE_ACCOUNT_TOKEN": "<your service account token>",
"GRAFANA_USERNAME": "<your username>",
"GRAFANA_PASSWORD": "<your password>"
}
}
}
}
@@ -0,0 +1,11 @@
{
"mcpServers": {
"huggingface": {
"description":"Access Hugging Face models, datasets, Spaces, papers, collections via MCP.",
"url": "https://huggingface.co/mcp",
"headers": {
"Authorization": "Bearer <YOUR_HF_TOKEN>"
}
}
}
}
@@ -0,0 +1,11 @@
{
"mcpServers": {
"imagesorcery-mcp": {
"description":"An MCP server providing tools for image processing operations",
"command": "imagesorcery-mcp",
"transportType": "stdio",
"autoApprove": ["blur", "change_color", "config", "crop", "detect", "draw_arrows", "draw_circles", "draw_lines", "draw_rectangles", "draw_texts", "fill", "find", "get_metainfo", "ocr", "overlay", "resize", "rotate"],
"timeout": 100
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"ios-simulator": {
"description": "Control iOS Simulator directly from Claude Code. Launch apps, take screenshots, manage device states, and streamline mobile development workflows.",
"command": "npx",
"args": ["-y", "ios-simulator-mcp"]
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"jfrog": {
"description":"JFrog MCP Server: providing your agents with direct access to JFrog Platform services.",
"url":"https://<JFROG_PLATFORM_URL>/mcp"
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"jina-ai": {
"description": "Official Jina AI MCP Server for web reading, search, grounding, and fact-checking capabilities powered by Jina AI APIs.",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.jina.ai/v1"],
"env": {
"JINA_API_KEY": "<your-jina-api-key>"
}
}
}
}
@@ -0,0 +1,13 @@
{
"mcpServers": {
"jupyter": {
"description": "Model Context Protocol server for Jupyter notebooks. Execute code, manage notebooks, and interact with Jupyter kernels directly from Claude.",
"command": "uvx",
"args": ["jupyter-mcp-server@latest"],
"env": {
"JUPYTER_URL": "<your-jupyter-url>",
"JUPYTER_TOKEN": "<your-jupyter-token>"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"just-mcp": {
"description": "Execute Just commands and task runners seamlessly from Claude Code. Manage project tasks, run build scripts, and automate development workflows with Just integration.",
"command": "/path/to/just-mcp",
"args": ["--stdio"]
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"LaunchDarkly": {
"description":"Official LaunchDarkly MCP Server for feature flag management and experimentation. Enables AI agents to interact with LaunchDarkly APIs for managing feature flags, AI configs, targeting rules, and gradual rollouts across multiple environments.",
"command": "npx",
"args": [
"-y", "--package", "@launchdarkly/mcp-server", "--", "mcp", "start",
"--api-key", "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
]
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"leetcode": {
"description": "A Model Context Protocol (MCP) server for LeetCode that enables AI assistants to access LeetCode problems, user information, and contest data.",
"command": "mcp-server-leetcode"
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"logfire": {
"description":"Provides access to OpenTelemetry traces and metrics through Logfire.",
"command": "uvx",
"args": ["logfire-mcp@latest", "--read-token=YOUR-TOKEN"]
}
}
}
@@ -0,0 +1,14 @@
{
"mcpServers": {
"markitdown": {
"description": "Convert various file formats (PDF, Word, Excel, images, audio) to Markdown.",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"markitdown-mcp:latest"
]
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"bitbucket": {
"description": "A Node.js/TypeScript Model Context Protocol (MCP) server for Atlassian Bitbucket Cloud. Enables AI systems (e.g., LLMs like Claude or Cursor AI) to securely interact with your repositories, pull requests, workspaces, and code in real time.",
"command": "npx",
"args": ["-y", "@aashari/mcp-server-atlassian-bitbucket"]
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"trello": {
"command": "pnpx",
"args": ["@delorenj/mcp-server-trello"],
"env": {
"TRELLO_API_KEY": "your-api-key",
"TRELLO_TOKEN": "your-token"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"mermaid": {
"description": "Generate Mermaid diagrams and charts dynamically with AI. Create flowcharts, sequence diagrams, class diagrams, and more via MCP.",
"command": "npx",
"args": ["-y", "mcp-mermaid"]
}
}
}
@@ -0,0 +1,11 @@
{
"mcpServers": {
"@microsoft/clarity-mcp-server": {
"command": "npx",
"args": [
"@microsoft/clarity-mcp-server",
"--clarity_api_token=your-api-token-here"
]
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"DevBox": {
"description":"This server enables natural language interactions for developer-focused operations like managing Dev Boxes, configurations, and pools.",
"command": "npx",
"args": ["-y", "@microsoft/devbox-mcp@latest"]
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"MongoDB": {
"description":"A Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.",
"command": "npx",
"args": ["-y", "mongodb-mcp-server@latest", "--readOnly"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://localhost:27017/myDatabase"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"nika": {
"description": "Read-only oracle for Nika AI workflows (.nika.yaml): validate a workflow, get findings explained with fix guidance, browse schema and examples, and see an honest cost estimate — all before a single token is spent. No execution and no mutation over MCP by design. Requires the nika binary (brew install supernovae-st/tap/nika).",
"command": "nika",
"args": ["mcp"]
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"postman-api-http-server": {
"description":"Postman's MCP server connects AI agents, assistants, and chatbots directly to your APIs on Postman. Use natural language to prompt AI to automate work across your Postman collections, environments, workspaces, and more.",
"type": "http",
"url": "https://mcp.postman.com/{minimal | mcp}",
"headers": {
"Authorization": "Bearer ${input:postman-api-key}"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"pulumi": {
"description": "The Pulumi Model Context Protocol (MCP) server enables advanced Infrastructure as Code development capabilities for connected agents, providing tools for cloud resource discovery and management using Pulumi Cloud and the Pulumi CLI.",
"command": "npx",
"args": ["-y", "@pulumi/mcp-server@latest", "stdio"]
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"Railway": {
"description": "Railway MCP server provides seamless integration with Railway's deployment platform, enabling Claude to manage projects, deployments, and infrastructure directly from the CLI.",
"command": "npx",
"args": ["-y", "@railway/mcp-server"]
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"sentry": {
"description": "Official Sentry MCP Server (local). Run Sentry integration locally via npx for debugging, error tracking, and performance monitoring.",
"command": "npx",
"args": ["-y", "@sentry/mcp-server@latest"],
"env": {
"SENTRY_ACCESS_TOKEN": "<your-sentry-auth-token>"
}
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"sentry": {
"description":"This service implements the Model Context Protocol (MCP) for interacting with Sentry, focused on human-in-the-loop coding agents and developer workflows rather than general-purpose API access.",
"url": "https://mcp.sentry.dev/mcp"
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"serena": {
"description": "Semantic code retrieval & editing tools for coding agents.",
"command": "/abs/path/to/uv",
"args": ["run", "--directory", "/abs/path/to/serena", "serena", "start-mcp-server"]
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"stripe": {
"description": "Let your AI agents interact with the Stripe API by using our MCP server.",
"command": "npx",
"args": ["-y", "@stripe/mcp", "--tools=all"],
"env": {
"STRIPE_SECRET_KEY": "your_stripe_secret_key_here"
}
}
}
}
@@ -0,0 +1,14 @@
{
"mcpServers": {
"terraform": {
"description": "The Terraform MCP Server is a Model Context Protocol (MCP) server that provides seamless integration with Terraform Registry APIs, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"hashicorp/terraform-mcp-server:0.2.3"
]
}
}
}
@@ -0,0 +1,14 @@
{
"mcpServers": {
"TestSprite": {
"description": "TestSprites MCP reads your intent, tests your code, and tells you what to fix.",
"command": "npx",
"args": [
"@testsprite/testsprite-mcp@latest"
],
"env": {
"API_KEY": "your-api-key"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"trace-mcp": {
"description": "Framework-aware code intelligence — semantic navigation, impact analysis, and refactoring across 60 framework integrations and 81 languages with up to 99% token reduction.",
"command": "npx",
"args": ["-y", "trace-mcp@latest"]
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"webflow": {
"description":"Enable AI agents to interact with Webflow APIs.",
"command": "npx mcp-remote https://mcp.webflow.com/sse"
}
}
}
@@ -0,0 +1,17 @@
{
"mcpServers": {
"zai-mcp-server": {
"description": "Vision MCP Server - Z.AI capability implementation based on the Model Context Protocol (MCP), providing powerful Z.AI GLM-4.6V capabilities for MCP-compatible clients such as Claude Code and Cline, including image analysis, video understanding, and other features.",
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@z_ai/mcp-server"
],
"env": {
"Z_AI_API_KEY": "your_api_key",
"Z_AI_MODE": "ZAI"
}
}
}
}