From 0a76fa7eb02475c492827146444d745803165c36 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 17 Jun 2026 17:52:34 -0700 Subject: [PATCH 1/5] feat: add confirmed MCP catalog entries --- registry/mcps/airtable/entry.json | 36 ++++++++++++++ registry/mcps/amazon-s3/entry.json | 44 +++++++++++++++++ registry/mcps/apify/entry.json | 36 ++++++++++++++ registry/mcps/asana/entry.json | 27 +++++++++++ registry/mcps/browserbase/entry.json | 41 ++++++++++++++++ registry/mcps/clickhouse/entry.json | 40 ++++++++++++++++ registry/mcps/confluence/entry.json | 27 +++++++++++ registry/mcps/discourse/entry.json | 36 ++++++++++++++ registry/mcps/exa/entry.json | 34 +++++++++++++ registry/mcps/fathom/entry.json | 27 +++++++++++ registry/mcps/figma/entry.json | 26 ++++++++++ registry/mcps/firecrawl/entry.json | 37 ++++++++++++++ registry/mcps/firestore/entry.json | 27 +++++++++++ registry/mcps/github/entry.json | 27 +++++++++++ registry/mcps/gitlab/entry.json | 26 ++++++++++ registry/mcps/google-bigquery/entry.json | 27 +++++++++++ registry/mcps/google-cloud-storage/entry.json | 26 ++++++++++ registry/mcps/google-looker/entry.json | 29 +++++++++++ registry/mcps/gumloop/entry.json | 27 +++++++++++ registry/mcps/jira/entry.json | 27 +++++++++++ registry/mcps/launchdarkly/entry.json | 34 +++++++++++++ registry/mcps/linear/entry.json | 27 +++++++++++ registry/mcps/mailgun/entry.json | 28 +++++++++++ registry/mcps/notion/entry.json | 27 +++++++++++ registry/mcps/paypal/entry.json | 28 +++++++++++ registry/mcps/perplexity/entry.json | 28 +++++++++++ registry/mcps/posthog/entry.json | 26 ++++++++++ registry/mcps/ramp/entry.json | 48 +++++++++++++++++++ registry/mcps/salesforce/entry.json | 32 +++++++++++++ registry/mcps/sentry/entry.json | 27 +++++++++++ registry/mcps/shopify/entry.json | 26 ++++++++++ registry/mcps/stripe/entry.json | 29 +++++++++++ registry/mcps/supabase/entry.json | 27 +++++++++++ registry/mcps/todoist/entry.json | 27 +++++++++++ registry/mcps/twilio/entry.json | 47 ++++++++++++++++++ registry/mcps/webflow/entry.json | 28 +++++++++++ registry/mcps/zapier/entry.json | 28 +++++++++++ registry/mcps/zoom/entry.json | 27 +++++++++++ 38 files changed, 1171 insertions(+) create mode 100644 registry/mcps/airtable/entry.json create mode 100644 registry/mcps/amazon-s3/entry.json create mode 100644 registry/mcps/apify/entry.json create mode 100644 registry/mcps/asana/entry.json create mode 100644 registry/mcps/browserbase/entry.json create mode 100644 registry/mcps/clickhouse/entry.json create mode 100644 registry/mcps/confluence/entry.json create mode 100644 registry/mcps/discourse/entry.json create mode 100644 registry/mcps/exa/entry.json create mode 100644 registry/mcps/fathom/entry.json create mode 100644 registry/mcps/figma/entry.json create mode 100644 registry/mcps/firecrawl/entry.json create mode 100644 registry/mcps/firestore/entry.json create mode 100644 registry/mcps/github/entry.json create mode 100644 registry/mcps/gitlab/entry.json create mode 100644 registry/mcps/google-bigquery/entry.json create mode 100644 registry/mcps/google-cloud-storage/entry.json create mode 100644 registry/mcps/google-looker/entry.json create mode 100644 registry/mcps/gumloop/entry.json create mode 100644 registry/mcps/jira/entry.json create mode 100644 registry/mcps/launchdarkly/entry.json create mode 100644 registry/mcps/linear/entry.json create mode 100644 registry/mcps/mailgun/entry.json create mode 100644 registry/mcps/notion/entry.json create mode 100644 registry/mcps/paypal/entry.json create mode 100644 registry/mcps/perplexity/entry.json create mode 100644 registry/mcps/posthog/entry.json create mode 100644 registry/mcps/ramp/entry.json create mode 100644 registry/mcps/salesforce/entry.json create mode 100644 registry/mcps/sentry/entry.json create mode 100644 registry/mcps/shopify/entry.json create mode 100644 registry/mcps/stripe/entry.json create mode 100644 registry/mcps/supabase/entry.json create mode 100644 registry/mcps/todoist/entry.json create mode 100644 registry/mcps/twilio/entry.json create mode 100644 registry/mcps/webflow/entry.json create mode 100644 registry/mcps/zapier/entry.json create mode 100644 registry/mcps/zoom/entry.json diff --git a/registry/mcps/airtable/entry.json b/registry/mcps/airtable/entry.json new file mode 100644 index 0000000..aa13288 --- /dev/null +++ b/registry/mcps/airtable/entry.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "airtable", + "type": "mcp", + "name": "Airtable", + "tagline": "Manage data in Airtable bases", + "description": "Manage data in Airtable bases. This official Airtable MCP integration is installable through Cline.", + "author": { + "name": "Airtable" + }, + "tags": [ + "data", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "airtable", + "--transport", + "http", + "https://mcp.airtable.com/mcp" + ], + "env": [ + { + "name": "AIRTABLE_TOKEN", + "required": true, + "description": "Airtable personal access token used by local Airtable MCP configuration.", + "url": "https://airtable.com/create/tokens" + } + ], + "notes": "Transport from source catalog: HTTPS remote MCP. Auth from source catalog: Airtable personal access token. Official Airtable GitHub repo; README says endpoint defaults to https://mcp.airtable.com/mcp." + }, + "homepage": "https://github.com/Airtable/airtable-mcp-cli", + "repo": "https://github.com/Airtable/airtable-mcp-cli" +} diff --git a/registry/mcps/amazon-s3/entry.json b/registry/mcps/amazon-s3/entry.json new file mode 100644 index 0000000..5c38800 --- /dev/null +++ b/registry/mcps/amazon-s3/entry.json @@ -0,0 +1,44 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "amazon-s3", + "type": "mcp", + "name": "Amazon S3", + "tagline": "Store files in S3 buckets", + "description": "Store files in S3 buckets. This official AWS MCP integration is installable through Cline.", + "author": { + "name": "AWS" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "amazon-s3", + "--", + "uvx", + "awslabs.aws-api-mcp-server@latest" + ], + "env": [ + { + "name": "AWS_ACCESS_KEY_ID", + "required": true, + "description": "AWS access key for S3 access." + }, + { + "name": "AWS_SECRET_ACCESS_KEY", + "required": true, + "description": "AWS secret access key for S3 access." + }, + { + "name": "AWS_REGION", + "required": true, + "description": "AWS region for the target S3 resources." + } + ], + "notes": "Transport from source catalog: stdio via uvx/docker; remote AWS Knowledge MCP also listed. Auth from source catalog: AWS credentials/IAM; server-specific env vars. Official AWS Labs MCP repository includes AWS API MCP for all AWS services and AWS S3 Tables MCP Server for S3 Tables." + }, + "homepage": "https://github.com/awslabs/mcp", + "repo": "https://github.com/awslabs/mcp" +} diff --git a/registry/mcps/apify/entry.json b/registry/mcps/apify/entry.json new file mode 100644 index 0000000..b9f2ba2 --- /dev/null +++ b/registry/mcps/apify/entry.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "apify", + "type": "mcp", + "name": "Apify", + "tagline": "Run Apify web scraping tasks", + "description": "Run Apify web scraping tasks. This official Apify MCP integration is installable through Cline.", + "author": { + "name": "Apify" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "apify", + "--transport", + "http", + "https://mcp.apify.com" + ], + "env": [ + { + "name": "APIFY_TOKEN", + "required": true, + "description": "Apify API token for local server usage.", + "url": "https://console.apify.com/account/integrations" + } + ], + "notes": "Transport from source catalog: Streamable HTTP; local stdio. Auth from source catalog: OAuth or Apify API token; x402/Skyfire payment options. Official Apify repo and hosted server; legacy SSE removed in favor of streamable HTTP." + }, + "homepage": "https://github.com/apify/apify-mcp-server", + "repo": "https://github.com/apify/apify-mcp-server" +} diff --git a/registry/mcps/asana/entry.json b/registry/mcps/asana/entry.json new file mode 100644 index 0000000..866ffb0 --- /dev/null +++ b/registry/mcps/asana/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "asana", + "type": "mcp", + "name": "Asana", + "tagline": "Interact with Asana", + "description": "Interact with Asana. This official Asana MCP integration is installable through Cline.", + "author": { + "name": "Asana" + }, + "tags": [ + "productivity", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "asana", + "--transport", + "http", + "https://mcp.asana.com/v2/mcp" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth with Asana account; client ID/secret may be needed for some clients. Official Asana developer docs; beta SSE endpoint https://mcp.asana.com/sse is deprecated/shutting down 2026-05-11." + }, + "homepage": "https://developers.asana.com/docs/using-asanas-mcp-server" +} diff --git a/registry/mcps/browserbase/entry.json b/registry/mcps/browserbase/entry.json new file mode 100644 index 0000000..2569248 --- /dev/null +++ b/registry/mcps/browserbase/entry.json @@ -0,0 +1,41 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "browserbase", + "type": "mcp", + "name": "BrowserBase", + "tagline": "Browser automation and testing", + "description": "Browser automation and testing. This official Browserbase MCP integration is installable through Cline.", + "author": { + "name": "Browserbase" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "browserbase", + "--transport", + "http", + "https://mcp.browserbase.com/mcp" + ], + "env": [ + { + "name": "BROWSERBASE_API_KEY", + "required": true, + "description": "Browserbase API key for local stdio usage.", + "url": "https://www.browserbase.com/settings" + }, + { + "name": "BROWSERBASE_PROJECT_ID", + "required": true, + "description": "Browserbase project ID for local stdio usage.", + "url": "https://www.browserbase.com/settings" + } + ], + "notes": "Transport from source catalog: Streamable HTTP; local stdio via npx. Auth from source catalog: Browserbase API key and project ID for local; hosted auth via remote endpoint. Official Browserbase GitHub repo; remote config uses https://mcp.browserbase.com/mcp." + }, + "homepage": "https://github.com/browserbase/mcp-server-browserbase", + "repo": "https://github.com/browserbase/mcp-server-browserbase" +} diff --git a/registry/mcps/clickhouse/entry.json b/registry/mcps/clickhouse/entry.json new file mode 100644 index 0000000..827ab64 --- /dev/null +++ b/registry/mcps/clickhouse/entry.json @@ -0,0 +1,40 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "clickhouse", + "type": "mcp", + "name": "ClickHouse", + "tagline": "Query and manage ClickHouse Cloud services", + "description": "Query and manage ClickHouse Cloud services. This official ClickHouse MCP integration is installable through Cline.", + "author": { + "name": "ClickHouse" + }, + "tags": [ + "data", + "databases" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "clickhouse", + "--", + "uv", + "run", + "--with", + "mcp-clickhouse", + "--python", + "3.10", + "mcp-clickhouse" + ], + "env": [ + { + "name": "CLICKHOUSE_MCP_AUTH_TOKEN", + "required": true, + "description": "Bearer token required when exposing ClickHouse MCP over HTTP or SSE." + } + ], + "notes": "Transport from source catalog: stdio by default; HTTP/SSE supported. Auth from source catalog: ClickHouse credentials; HTTP/SSE requires bearer token/OAuth unless disabled locally. Official ClickHouse GitHub repo; connects to ClickHouse cluster and supports chDB." + }, + "homepage": "https://github.com/ClickHouse/mcp-clickhouse", + "repo": "https://github.com/ClickHouse/mcp-clickhouse" +} diff --git a/registry/mcps/confluence/entry.json b/registry/mcps/confluence/entry.json new file mode 100644 index 0000000..44f60fa --- /dev/null +++ b/registry/mcps/confluence/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "confluence", + "type": "mcp", + "name": "Confluence", + "tagline": "Interact with Confluence projects", + "description": "Interact with Confluence projects. This official Atlassian MCP integration is installable through Cline.", + "author": { + "name": "Atlassian" + }, + "tags": [ + "research", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "confluence", + "--transport", + "http", + "https://mcp.atlassian.com/v1/mcp/authv2" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth 2.1; optional API token. Atlassian Rovo MCP supports Jira, Confluence, and Compass; old SSE endpoint deprecated after 2026-06-30." + }, + "homepage": "https://support.atlassian.com/atlassian-rovo-mcp-server/docs/getting-started-with-the-atlassian-remote-mcp-server/" +} diff --git a/registry/mcps/discourse/entry.json b/registry/mcps/discourse/entry.json new file mode 100644 index 0000000..4f47d87 --- /dev/null +++ b/registry/mcps/discourse/entry.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "discourse", + "type": "mcp", + "name": "Discourse", + "tagline": "Interact with Discourse", + "description": "Interact with Discourse. This official Discourse MCP integration is installable through Cline.", + "author": { + "name": "Discourse" + }, + "tags": [ + "research", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "discourse", + "--", + "npx", + "-y", + "@discourse/mcp@latest" + ], + "env": [ + { + "name": "DISCOURSE_API_KEY", + "required": true, + "description": "Discourse API key for writes or private content access." + } + ], + "notes": "Transport from source catalog: stdio; optional HTTP. Auth from source catalog: None by default; Discourse API keys for writes/private access. Official Discourse GitHub repo; supports selecting/tethering to a Discourse site." + }, + "homepage": "https://github.com/discourse/discourse-mcp", + "repo": "https://github.com/discourse/discourse-mcp" +} diff --git a/registry/mcps/exa/entry.json b/registry/mcps/exa/entry.json new file mode 100644 index 0000000..e24f043 --- /dev/null +++ b/registry/mcps/exa/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "exa", + "type": "mcp", + "name": "Exa", + "tagline": "Interact with Exa", + "description": "Interact with Exa. This official Exa MCP integration is installable through Cline.", + "author": { + "name": "Exa" + }, + "tags": [ + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "exa", + "--transport", + "http", + "https://mcp.exa.ai/mcp" + ], + "env": [ + { + "name": "EXA_API_KEY", + "required": true, + "description": "Exa API key for hosted or local search access.", + "url": "https://exa.ai" + } + ], + "notes": "Transport from source catalog: Streamable HTTP / remote MCP; local stdio wrapper. Auth from source catalog: Optional Exa API key / hosted connector. Official Exa docs and provider-owned repo: https://github.com/exa-labs/exa-mcp-server" + }, + "homepage": "https://exa.ai/docs/reference/exa-mcp" +} diff --git a/registry/mcps/fathom/entry.json b/registry/mcps/fathom/entry.json new file mode 100644 index 0000000..c1d84e4 --- /dev/null +++ b/registry/mcps/fathom/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "fathom", + "type": "mcp", + "name": "Fathom", + "tagline": "Access meeting recordings, transcripts, and AI-generated summaries", + "description": "Access meeting recordings, transcripts, and AI-generated summaries. This official Fathom MCP integration is installable through Cline.", + "author": { + "name": "Fathom" + }, + "tags": [ + "productivity", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "fathom", + "--transport", + "http", + "https://api.fathom.ai/mcp" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: Fathom auth not parsed from public registry entry. Official MCP registry latest entry uses ai.fathom.api/mcp and api.fathom.ai domain." + }, + "homepage": "https://registry.modelcontextprotocol.io/v0/servers/ai.fathom.api%2Fmcp/versions/latest" +} diff --git a/registry/mcps/figma/entry.json b/registry/mcps/figma/entry.json new file mode 100644 index 0000000..6672a7d --- /dev/null +++ b/registry/mcps/figma/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "figma", + "type": "mcp", + "name": "Figma", + "tagline": "Design files, components, variables, and design-to-code context", + "description": "Design files, components, variables, and design-to-code context. This official Figma MCP integration is installable through Cline.", + "author": { + "name": "Figma" + }, + "tags": [ + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "figma", + "--transport", + "http", + "https://mcp.figma.com/mcp" + ], + "notes": "Transport from source catalog: Remote MCP / Streamable HTTP; desktop MCP server also available through Figma desktop app. Auth from source catalog: Figma account authorization; remote server available on all seats/plans; desktop server requires Dev or Full seat on paid plans. Official Figma MCP server. Remote endpoint is preferred; desktop server runs locally through the Figma desktop app for specific org/enterprise use cases." + }, + "homepage": "https://help.figma.com/hc/en-us/articles/32132100833559-Guide-to-the-Figma-MCP-server" +} diff --git a/registry/mcps/firecrawl/entry.json b/registry/mcps/firecrawl/entry.json new file mode 100644 index 0000000..b9b66f5 --- /dev/null +++ b/registry/mcps/firecrawl/entry.json @@ -0,0 +1,37 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "firecrawl", + "type": "mcp", + "name": "Firecrawl", + "tagline": "Web scraping and data extraction", + "description": "Web scraping and data extraction. This official Firecrawl MCP integration is installable through Cline.", + "author": { + "name": "Firecrawl" + }, + "tags": [ + "research", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "firecrawl", + "--", + "npx", + "-y", + "firecrawl-mcp" + ], + "env": [ + { + "name": "FIRECRAWL_API_KEY", + "required": true, + "description": "Firecrawl API key for crawling and scraping.", + "url": "https://www.firecrawl.dev/app/api-keys" + } + ], + "notes": "Transport from source catalog: stdio; optional streamable HTTP. Auth from source catalog: Firecrawl API key or OAuth bearer. Official Firecrawl org repo; docs show local HTTP mode at http://localhost:3000/mcp." + }, + "homepage": "https://github.com/firecrawl/firecrawl-mcp-server", + "repo": "https://github.com/firecrawl/firecrawl-mcp-server" +} diff --git a/registry/mcps/firestore/entry.json b/registry/mcps/firestore/entry.json new file mode 100644 index 0000000..22e8b05 --- /dev/null +++ b/registry/mcps/firestore/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "firestore", + "type": "mcp", + "name": "Firestore", + "tagline": "Write data to Firestore databases", + "description": "Write data to Firestore databases. This official Google Cloud MCP integration is installable through Cline.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data", + "databases" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "firestore", + "--transport", + "http", + "https://firestore.googleapis.com/mcp" + ], + "notes": "Transport from source catalog: remote HTTP. Auth from source catalog: Google IAM/OAuth. Google Cloud supported-products page lists Firestore MCP endpoint." + }, + "homepage": "https://docs.cloud.google.com/mcp/supported-products" +} diff --git a/registry/mcps/github/entry.json b/registry/mcps/github/entry.json new file mode 100644 index 0000000..ea979a2 --- /dev/null +++ b/registry/mcps/github/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "github", + "type": "mcp", + "name": "GitHub", + "tagline": "Interact with GitHub pull requests", + "description": "Interact with GitHub pull requests. This official GitHub MCP integration is installable through Cline.", + "author": { + "name": "GitHub" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "github", + "--transport", + "http", + "https://api.githubcopilot.com/mcp/" + ], + "notes": "Transport from source catalog: remote HTTP or local stdio. Auth from source catalog: GitHub OAuth or PAT. Official GitHub org repo and hosted remote MCP server." + }, + "homepage": "https://github.com/github/github-mcp-server", + "repo": "https://github.com/github/github-mcp-server" +} diff --git a/registry/mcps/gitlab/entry.json b/registry/mcps/gitlab/entry.json new file mode 100644 index 0000000..8e7b843 --- /dev/null +++ b/registry/mcps/gitlab/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "gitlab", + "type": "mcp", + "name": "GitLab", + "tagline": "Manage GitLab projects, issues, MRs, and CI/CD", + "description": "Manage GitLab projects, issues, MRs, and CI/CD. This official GitLab MCP integration is installable through Cline.", + "author": { + "name": "GitLab" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "gitlab", + "--transport", + "http", + "https://gitlab.com/api/v4/mcp" + ], + "notes": "Transport from source catalog: HTTP recommended; stdio via mcp-remote. Auth from source catalog: OAuth 2.0 Dynamic Client Registration. Official GitLab MCP server, beta, Premium/Ultimate." + }, + "homepage": "https://docs.gitlab.com/user/gitlab_duo/model_context_protocol/mcp_server/" +} diff --git a/registry/mcps/google-bigquery/entry.json b/registry/mcps/google-bigquery/entry.json new file mode 100644 index 0000000..3d42568 --- /dev/null +++ b/registry/mcps/google-bigquery/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "google-bigquery", + "type": "mcp", + "name": "Google BigQuery", + "tagline": "Query and retrieve data from BigQuery", + "description": "Query and retrieve data from BigQuery. This official Google Cloud MCP integration is installable through Cline.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data", + "databases" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "google-bigquery", + "--transport", + "http", + "https://bigquery.googleapis.com/mcp" + ], + "notes": "Transport from source catalog: remote HTTP. Auth from source catalog: Google IAM/OAuth. Google Cloud docs list BigQuery MCP endpoint; OSS option also exists via googleapis/mcp-toolbox." + }, + "homepage": "https://docs.cloud.google.com/bigquery/docs/use-bigquery-mcp" +} diff --git a/registry/mcps/google-cloud-storage/entry.json b/registry/mcps/google-cloud-storage/entry.json new file mode 100644 index 0000000..81501a6 --- /dev/null +++ b/registry/mcps/google-cloud-storage/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "google-cloud-storage", + "type": "mcp", + "name": "Google Cloud Storage", + "tagline": "Interact with Google Cloud Storage", + "description": "Interact with Google Cloud Storage. This official Google Cloud MCP integration is installable through Cline.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "google-cloud-storage", + "--transport", + "http", + "https://storage.googleapis.com/storage/mcp" + ], + "notes": "Transport from source catalog: remote HTTP. Auth from source catalog: Google IAM/OAuth. Google Cloud supported-products page lists Cloud Storage MCP endpoint." + }, + "homepage": "https://docs.cloud.google.com/mcp/supported-products" +} diff --git a/registry/mcps/google-looker/entry.json b/registry/mcps/google-looker/entry.json new file mode 100644 index 0000000..102d4ee --- /dev/null +++ b/registry/mcps/google-looker/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "google-looker", + "type": "mcp", + "name": "Google Looker", + "tagline": "Interact with Google Looker", + "description": "Interact with Google Looker. This official Google Cloud / Looker MCP integration is installable through Cline.", + "author": { + "name": "Google Cloud / Looker" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "google-looker", + "--", + "npx", + "@toolbox-sdk/server", + "--prebuilt=looker", + "--stdio" + ], + "notes": "Transport from source catalog: local stdio or HTTP via MCP Toolbox. Auth from source catalog: Google/application credentials. Google mcp-toolbox docs list Looker using MCP." + }, + "homepage": "https://mcp-toolbox.dev/documentation/configuration/prebuilt-configs/", + "repo": "https://github.com/googleapis/mcp-toolbox" +} diff --git a/registry/mcps/gumloop/entry.json b/registry/mcps/gumloop/entry.json new file mode 100644 index 0000000..8b45d51 --- /dev/null +++ b/registry/mcps/gumloop/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "gumloop", + "type": "mcp", + "name": "Gumloop", + "tagline": "Interact with Gumloop", + "description": "Interact with Gumloop. This official Gumloop MCP integration is installable through Cline.", + "author": { + "name": "Gumloop" + }, + "tags": [ + "business", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "gumloop", + "--transport", + "http", + "https://mcp.gumloop.com/gumloop/mcp" + ], + "notes": "Transport from source catalog: Remote MCP / SSE via mcp-remote for unsupported clients. Auth from source catalog: OAuth plus Gumloop API key. Official Gumloop remote MCP server for workflows, agents, sessions, skills, artifacts, teams, connected MCP server management, documentation, and audit logs." + }, + "homepage": "https://docs.gumloop.com/mcp-server/overview" +} diff --git a/registry/mcps/jira/entry.json b/registry/mcps/jira/entry.json new file mode 100644 index 0000000..4058897 --- /dev/null +++ b/registry/mcps/jira/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "jira", + "type": "mcp", + "name": "Jira", + "tagline": "Interact with Jira projects", + "description": "Interact with Jira projects. This official Atlassian MCP integration is installable through Cline.", + "author": { + "name": "Atlassian" + }, + "tags": [ + "productivity", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "jira", + "--transport", + "http", + "https://mcp.atlassian.com/v1/mcp/authv2" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth 2.1; optional API token. Atlassian Rovo MCP supports Jira, Confluence, and Compass; old SSE endpoint deprecated after 2026-06-30." + }, + "homepage": "https://support.atlassian.com/atlassian-rovo-mcp-server/docs/getting-started-with-the-atlassian-remote-mcp-server/" +} diff --git a/registry/mcps/launchdarkly/entry.json b/registry/mcps/launchdarkly/entry.json new file mode 100644 index 0000000..d213698 --- /dev/null +++ b/registry/mcps/launchdarkly/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "launchdarkly", + "type": "mcp", + "name": "LaunchDarkly", + "tagline": "Manage feature flags, segments, and environments", + "description": "Manage feature flags, segments, and environments. This official LaunchDarkly MCP integration is installable through Cline.", + "author": { + "name": "LaunchDarkly" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "launchdarkly", + "--", + "npx", + "-y", + "--package", + "@launchdarkly/mcp-server", + "--", + "mcp", + "start", + "--api-key", + "" + ], + "notes": "Transport from source catalog: stdio; optional local SSE via Docker. Auth from source catalog: LaunchDarkly API key. Official LaunchDarkly GitHub repo." + }, + "homepage": "https://github.com/launchdarkly/mcp-server", + "repo": "https://github.com/launchdarkly/mcp-server" +} diff --git a/registry/mcps/linear/entry.json b/registry/mcps/linear/entry.json new file mode 100644 index 0000000..2fd7c1a --- /dev/null +++ b/registry/mcps/linear/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "linear", + "type": "mcp", + "name": "Linear", + "tagline": "Handle Linear project issues", + "description": "Handle Linear project issues. This official Linear MCP integration is installable through Cline.", + "author": { + "name": "Linear" + }, + "tags": [ + "productivity", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "linear", + "--transport", + "http", + "https://mcp.linear.app/mcp" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth 2.1; API key/Bearer supported. Official hosted MCP docs." + }, + "homepage": "https://linear.app/docs/mcp" +} diff --git a/registry/mcps/mailgun/entry.json b/registry/mcps/mailgun/entry.json new file mode 100644 index 0000000..57a0b23 --- /dev/null +++ b/registry/mcps/mailgun/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mailgun", + "type": "mcp", + "name": "Mailgun", + "tagline": "Send bulk emails via Mailgun", + "description": "Send bulk emails via Mailgun. This official Mailgun MCP integration is installable through Cline.", + "author": { + "name": "Mailgun" + }, + "tags": [ + "marketing" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mailgun", + "--", + "npx", + "-y", + "@mailgun/mcp-server" + ], + "notes": "Transport from source catalog: stdio. Auth from source catalog: Mailgun API key. Official Mailgun GitHub repo; local only, no hosted server found." + }, + "homepage": "https://github.com/mailgun/mailgun-mcp-server", + "repo": "https://github.com/mailgun/mailgun-mcp-server" +} diff --git a/registry/mcps/notion/entry.json b/registry/mcps/notion/entry.json new file mode 100644 index 0000000..4de703c --- /dev/null +++ b/registry/mcps/notion/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "notion", + "type": "mcp", + "name": "Notion", + "tagline": "Interact with Notion databases and pages", + "description": "Interact with Notion databases and pages. This official Notion MCP integration is installable through Cline.", + "author": { + "name": "Notion" + }, + "tags": [ + "productivity", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "notion", + "--transport", + "http", + "https://mcp.notion.com/mcp" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth. Official Notion hosted MCP docs." + }, + "homepage": "https://developers.notion.com/guides/mcp/overview" +} diff --git a/registry/mcps/paypal/entry.json b/registry/mcps/paypal/entry.json new file mode 100644 index 0000000..6470f24 --- /dev/null +++ b/registry/mcps/paypal/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "paypal", + "type": "mcp", + "name": "PayPal", + "tagline": "Handle PayPal transactions", + "description": "Handle PayPal transactions. This official PayPal MCP integration is installable through Cline.", + "author": { + "name": "PayPal" + }, + "tags": [ + "finance", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "paypal", + "--transport", + "http", + "https://mcp.paypal.com/mcp" + ], + "notes": "Transport from source catalog: Streamable HTTP; SSE also listed in registry; local stdio package. Auth from source catalog: OAuth bearer token / PayPal access token. Official PayPal GitHub repo plus MCP registry entry for mcp.paypal.com." + }, + "homepage": "https://github.com/paypal/paypal-mcp-server", + "repo": "https://github.com/paypal/paypal-mcp-server" +} diff --git a/registry/mcps/perplexity/entry.json b/registry/mcps/perplexity/entry.json new file mode 100644 index 0000000..a1f0342 --- /dev/null +++ b/registry/mcps/perplexity/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "perplexity", + "type": "mcp", + "name": "Perplexity", + "tagline": "Perform web searches using Perplexity AI", + "description": "Perform web searches using Perplexity AI. This official Perplexity MCP integration is installable through Cline.", + "author": { + "name": "Perplexity" + }, + "tags": [ + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "perplexity", + "--", + "npx", + "-y", + "@perplexity-ai/mcp-server" + ], + "notes": "Transport from source catalog: stdio. Auth from source catalog: Perplexity API key. Official Perplexity docs and GitHub repo." + }, + "homepage": "https://docs.perplexity.ai/docs/getting-started/integrations/mcp-server", + "repo": "https://github.com/perplexityai/modelcontextprotocol" +} diff --git a/registry/mcps/posthog/entry.json b/registry/mcps/posthog/entry.json new file mode 100644 index 0000000..3e41034 --- /dev/null +++ b/registry/mcps/posthog/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "posthog", + "type": "mcp", + "name": "PostHog", + "tagline": "Product analytics and user tracking", + "description": "Product analytics and user tracking. This official PostHog MCP integration is installable through Cline.", + "author": { + "name": "PostHog" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "posthog", + "--transport", + "http", + "https://mcp.posthog.com/mcp" + ], + "notes": "Transport from source catalog: HTTP. Auth from source catalog: OAuth/login. Official PostHog docs and repo: https://github.com/PostHog/mcp" + }, + "homepage": "https://posthog.com/docs/model-context-protocol" +} diff --git a/registry/mcps/ramp/entry.json b/registry/mcps/ramp/entry.json new file mode 100644 index 0000000..29c50c8 --- /dev/null +++ b/registry/mcps/ramp/entry.json @@ -0,0 +1,48 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "ramp", + "type": "mcp", + "name": "Ramp", + "tagline": "Manage corporate spend with Ramp", + "description": "Manage corporate spend with Ramp. This official Ramp MCP integration is installable through Cline.", + "author": { + "name": "Ramp" + }, + "tags": [ + "finance", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "ramp", + "--", + "uv", + "run", + "ramp-mcp", + "-s", + "" + ], + "env": [ + { + "name": "RAMP_CLIENT_ID", + "required": true, + "description": "Ramp client ID for API access." + }, + { + "name": "RAMP_CLIENT_SECRET", + "required": true, + "description": "Ramp client secret for API access." + }, + { + "name": "RAMP_ENV", + "required": true, + "description": "Ramp environment, usually demo or prd." + } + ], + "notes": "Transport from source catalog: stdio. Auth from source catalog: client credentials. Ramp public repo; README copyright Ramp Business Corporation." + }, + "homepage": "https://github.com/ramp-public/ramp_mcp", + "repo": "https://github.com/ramp-public/ramp_mcp" +} diff --git a/registry/mcps/salesforce/entry.json b/registry/mcps/salesforce/entry.json new file mode 100644 index 0000000..4f6306b --- /dev/null +++ b/registry/mcps/salesforce/entry.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "salesforce", + "type": "mcp", + "name": "Salesforce", + "tagline": "Access and modify Salesforce CRM data", + "description": "Access and modify Salesforce CRM data. This official Salesforce MCP integration is installable through Cline.", + "author": { + "name": "Salesforce" + }, + "tags": [ + "sales", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "salesforce", + "--", + "npx", + "-y", + "@salesforce/mcp", + "--orgs", + "DEFAULT_TARGET_ORG", + "--toolsets", + "orgs,metadata,data,users" + ], + "notes": "Transport from source catalog: stdio. Auth from source catalog: Salesforce CLI authorized org. Official Salesforce docs; official repo: https://github.com/salesforcecli/mcp." + }, + "homepage": "https://developer.salesforce.com/docs/ai/agentforce/guide/mcp.html" +} diff --git a/registry/mcps/sentry/entry.json b/registry/mcps/sentry/entry.json new file mode 100644 index 0000000..21c712a --- /dev/null +++ b/registry/mcps/sentry/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "sentry", + "type": "mcp", + "name": "Sentry", + "tagline": "Inspect errors and releases", + "description": "Inspect errors and releases. This official Sentry MCP integration is installable through Cline.", + "author": { + "name": "Sentry" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "sentry", + "--transport", + "http", + "https://mcp.sentry.dev" + ], + "notes": "Transport from source catalog: Remote MCP service; stdio supported via npm package. Auth from source catalog: OAuth for remote flow; Sentry user auth token for stdio/self-hosted. Screenshot-only row. Official getsentry/sentry-mcp repo; stdio requires Sentry auth token with org/project/team/event scopes; remote production service is mcp.sentry.dev." + }, + "homepage": "https://github.com/getsentry/sentry-mcp", + "repo": "https://github.com/getsentry/sentry-mcp" +} diff --git a/registry/mcps/shopify/entry.json b/registry/mcps/shopify/entry.json new file mode 100644 index 0000000..af246c1 --- /dev/null +++ b/registry/mcps/shopify/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "shopify", + "type": "mcp", + "name": "Shopify", + "tagline": "Manage Shopify store data", + "description": "Manage Shopify store data. This official Shopify MCP integration is installable through Cline.", + "author": { + "name": "Shopify" + }, + "tags": [ + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "shopify", + "--transport", + "http", + "https://{shop}.myshopify.com/api/mcp" + ], + "notes": "Transport from source catalog: HTTP. Auth from source catalog: None for Storefront MCP. Server details: https://shopify.dev/docs/apps/build/storefront-mcp/servers/storefront" + }, + "homepage": "https://shopify.dev/docs/apps/build/storefront-mcp" +} diff --git a/registry/mcps/stripe/entry.json b/registry/mcps/stripe/entry.json new file mode 100644 index 0000000..f8dae02 --- /dev/null +++ b/registry/mcps/stripe/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "stripe", + "type": "mcp", + "name": "Stripe", + "tagline": "Interact with Stripe", + "description": "Interact with Stripe. This official Stripe MCP integration is installable through Cline.", + "author": { + "name": "Stripe" + }, + "tags": [ + "finance", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "stripe", + "--", + "npx", + "-y", + "@stripe/mcp@latest", + "--api-key=" + ], + "notes": "Transport from source catalog: HTTP. Auth from source catalog: OAuth or restricted API key. Official Stripe docs; local repo: https://github.com/stripe/ai/tree/main/tools/modelcontextprotocol" + }, + "homepage": "https://docs.stripe.com/mcp" +} diff --git a/registry/mcps/supabase/entry.json b/registry/mcps/supabase/entry.json new file mode 100644 index 0000000..10f5b39 --- /dev/null +++ b/registry/mcps/supabase/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "supabase", + "type": "mcp", + "name": "Supabase", + "tagline": "Manage data in Supabase databases", + "description": "Manage data in Supabase databases. This official Supabase MCP integration is installable through Cline.", + "author": { + "name": "Supabase" + }, + "tags": [ + "data", + "databases" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "supabase", + "--transport", + "http", + "https://mcp.supabase.com/mcp" + ], + "notes": "Transport from source catalog: HTTP. Auth from source catalog: OAuth/DCR; PAT for CI. Official Supabase docs; local dev via Supabase CLI at http://localhost:54321/mcp." + }, + "homepage": "https://supabase.com/docs/guides/ai-tools/mcp" +} diff --git a/registry/mcps/todoist/entry.json b/registry/mcps/todoist/entry.json new file mode 100644 index 0000000..761a78b --- /dev/null +++ b/registry/mcps/todoist/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "todoist", + "type": "mcp", + "name": "Todoist", + "tagline": "Manage tasks and projects", + "description": "Manage tasks and projects. This official Doist / Todoist MCP integration is installable through Cline.", + "author": { + "name": "Doist / Todoist" + }, + "tags": [ + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "todoist", + "--transport", + "http", + "https://ai.todoist.net/mcp" + ], + "notes": "Transport from source catalog: Streamable HTTP; local stdio via npm package; mcp-remote bridge supported. Auth from source catalog: OAuth for hosted MCP; TODOIST_API_KEY for local/direct tool use. Screenshot-only row. Official Doist repo; hosted MCP endpoint supports OAuth and can be bridged with npx -y mcp-remote https://ai.todoist.net/mcp." + }, + "homepage": "https://github.com/doist/todoist-mcp", + "repo": "https://github.com/doist/todoist-mcp" +} diff --git a/registry/mcps/twilio/entry.json b/registry/mcps/twilio/entry.json new file mode 100644 index 0000000..5d3a0a9 --- /dev/null +++ b/registry/mcps/twilio/entry.json @@ -0,0 +1,47 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "twilio", + "type": "mcp", + "name": "Twilio", + "tagline": "Send SMS and voice messages", + "description": "Send SMS and voice messages. This official Twilio Labs MCP integration is installable through Cline.", + "author": { + "name": "Twilio Labs" + }, + "tags": [ + "marketing", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "twilio", + "--", + "npx", + "-y", + "@twilio-alpha/mcp", + "YOUR_ACCOUNT_SID/YOUR_API_KEY:YOUR_API_SECRET" + ], + "env": [ + { + "name": "TWILIO_ACCOUNT_SID", + "required": true, + "description": "Twilio account SID." + }, + { + "name": "TWILIO_API_KEY", + "required": true, + "description": "Twilio API key." + }, + { + "name": "TWILIO_API_SECRET", + "required": true, + "description": "Twilio API secret." + } + ], + "notes": "Transport from source catalog: stdio. Auth from source catalog: Twilio Account SID/API key/secret. Official Twilio Labs repo exposes Twilio APIs as MCP tools." + }, + "homepage": "https://github.com/twilio-labs/mcp", + "repo": "https://github.com/twilio-labs/mcp" +} diff --git a/registry/mcps/webflow/entry.json b/registry/mcps/webflow/entry.json new file mode 100644 index 0000000..8f982cd --- /dev/null +++ b/registry/mcps/webflow/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "webflow", + "type": "mcp", + "name": "Webflow", + "tagline": "Manage Webflow sites and content", + "description": "Manage Webflow sites and content. This official Webflow MCP integration is installable through Cline.", + "author": { + "name": "Webflow" + }, + "tags": [ + "creative", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "webflow", + "--transport", + "sse", + "https://mcp.webflow.com/sse" + ], + "notes": "Transport from source catalog: SSE/HTTP. Auth from source catalog: OAuth remote; API token local. Official Webflow GitHub repo." + }, + "homepage": "https://github.com/webflow/mcp-server", + "repo": "https://github.com/webflow/mcp-server" +} diff --git a/registry/mcps/zapier/entry.json b/registry/mcps/zapier/entry.json new file mode 100644 index 0000000..e0ea98a --- /dev/null +++ b/registry/mcps/zapier/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "zapier", + "type": "mcp", + "name": "Zapier", + "tagline": "Trigger Zapier automations", + "description": "Trigger Zapier automations. This official Zapier MCP integration is installable through Cline.", + "author": { + "name": "Zapier" + }, + "tags": [ + "productivity", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "zapier", + "--transport", + "http", + "https://mcp.zapier.com" + ], + "notes": "Transport from source catalog: HTTP. Auth from source catalog: API key or OAuth. Official Zapier repo; product page: https://zapier.com/mcp." + }, + "homepage": "https://github.com/zapier/zapier-mcp", + "repo": "https://github.com/zapier/zapier-mcp" +} diff --git a/registry/mcps/zoom/entry.json b/registry/mcps/zoom/entry.json new file mode 100644 index 0000000..eaaeaa8 --- /dev/null +++ b/registry/mcps/zoom/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "zoom", + "type": "mcp", + "name": "Zoom", + "tagline": "Manage Zoom meetings and webinars", + "description": "Manage Zoom meetings and webinars. This official Zoom MCP integration is installable through Cline.", + "author": { + "name": "Zoom" + }, + "tags": [ + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "zoom", + "--transport", + "http", + "https://mcp.zoom.us/mcp/zoom/streamable" + ], + "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: Zoom account/OAuth via remote MCP. Official Zoom GitHub registry metadata lists Zoom Workspace, Docs, Whiteboard, Revenue Accelerator, and Team Chat MCP remote URLs." + }, + "homepage": "https://github.com/zoom/mcp-registry", + "repo": "https://github.com/zoom/mcp-registry" +} From 34b197df71b0d09dfa74834f7f28d10d84de82ec Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 17 Jun 2026 18:00:35 -0700 Subject: [PATCH 2/5] feat: add MCP entries from plugin bundles --- registry/mcps/adobe-for-creativity/entry.json | 27 +++++++ registry/mcps/aikido/entry.json | 30 ++++++++ registry/mcps/amplitude/entry.json | 29 ++++++++ registry/mcps/apollo/entry.json | 29 ++++++++ registry/mcps/appwrite-api/entry.json | 45 ++++++++++++ registry/mcps/appwrite-docs/entry.json | 29 ++++++++ registry/mcps/atlan/entry.json | 29 ++++++++ registry/mcps/atlassian-ads/entry.json | 25 +++++++ registry/mcps/atlassian/entry.json | 25 +++++++ registry/mcps/aurora-dsql/entry.json | 36 +++++++++ registry/mcps/aws-mcp/entry.json | 33 +++++++++ registry/mcps/aws-serverless-mcp/entry.json | 36 +++++++++ registry/mcps/awsiac/entry.json | 35 +++++++++ registry/mcps/awsknowledge/entry.json | 29 ++++++++ registry/mcps/awspricing/entry.json | 41 +++++++++++ registry/mcps/azure/entry.json | 31 ++++++++ registry/mcps/bigdata-com/entry.json | 26 +++++++ registry/mcps/buildkite/entry.json | 25 +++++++ registry/mcps/cds-mcp/entry.json | 29 ++++++++ registry/mcps/circle/entry.json | 28 +++++++ registry/mcps/circleback/entry.json | 26 +++++++ registry/mcps/cloudflare-api/entry.json | 25 +++++++ registry/mcps/cloudflare-bindings/entry.json | 25 +++++++ registry/mcps/cloudflare-builds/entry.json | 25 +++++++ registry/mcps/cloudflare-docs/entry.json | 26 +++++++ .../mcps/cloudflare-observability/entry.json | 25 +++++++ registry/mcps/cloudinary-analysis/entry.json | 28 +++++++ .../mcps/cloudinary-asset-mgmt/entry.json | 28 +++++++ .../mcps/cloudinary-env-config/entry.json | 28 +++++++ .../mcps/cloudinary-mediaflows/entry.json | 34 +++++++++ registry/mcps/cloudinary-smd/entry.json | 28 +++++++ registry/mcps/cockroachdb-cloud/entry.json | 38 ++++++++++ registry/mcps/codspeed/entry.json | 28 +++++++ registry/mcps/convex/entry.json | 32 ++++++++ .../entry.json | 31 ++++++++ .../entry.json | 73 +++++++++++++++++++ .../datacloud-bigquery-toolbox/entry.json | 43 +++++++++++ .../entry.json | 31 ++++++++ .../entry.json | 68 +++++++++++++++++ .../datacloud-dataproc-toolbox/entry.json | 43 +++++++++++ .../entry.json | 39 ++++++++++ .../entry.json | 43 +++++++++++ .../mcps/datacloud-spanner-toolbox/entry.json | 53 ++++++++++++++ registry/mcps/endor-cli-tools/entry.json | 30 ++++++++ registry/mcps/expo/entry.json | 28 +++++++ registry/mcps/fiftyone/entry.json | 28 +++++++ registry/mcps/firebase/entry.json | 28 +++++++ registry/mcps/forge/entry.json | 25 +++++++ registry/mcps/fullstory/entry.json | 27 +++++++ registry/mcps/graphos-tools/entry.json | 28 +++++++ registry/mcps/greptile/entry.json | 35 +++++++++ registry/mcps/huggingface-skills/entry.json | 29 ++++++++ registry/mcps/hunter/entry.json | 29 ++++++++ registry/mcps/intercom/entry.json | 29 ++++++++ registry/mcps/laravel-boost/entry.json | 26 +++++++ registry/mcps/legalzoom/entry.json | 29 ++++++++ registry/mcps/logfire/entry.json | 28 +++++++ registry/mcps/mapbox-devkit/entry.json | 28 +++++++ registry/mcps/mapbox-docs/entry.json | 29 ++++++++ registry/mcps/mapbox/entry.json | 28 +++++++ registry/mcps/mercadopago/entry.json | 32 ++++++++ registry/mcps/microsoft-learn/entry.json | 29 ++++++++ registry/mcps/mintlify/entry.json | 25 +++++++ registry/mcps/miro/entry.json | 31 ++++++++ registry/mcps/mongodb/entry.json | 30 ++++++++ registry/mcps/neon/entry.json | 28 +++++++ registry/mcps/nimble/entry.json | 29 ++++++++ registry/mcps/notebook/entry.json | 34 +++++++++ registry/mcps/pagerduty/entry.json | 35 +++++++++ registry/mcps/pinecone/entry.json | 34 +++++++++ registry/mcps/planetscale/entry.json | 25 +++++++ registry/mcps/playwright/entry.json | 25 +++++++ registry/mcps/postman/entry.json | 35 +++++++++ registry/mcps/prisma-local/entry.json | 28 +++++++ registry/mcps/prisma-remote/entry.json | 26 +++++++ registry/mcps/qt-docs/entry.json | 26 +++++++ registry/mcps/quarkus-agent/entry.json | 28 +++++++ registry/mcps/railway/entry.json | 29 ++++++++ registry/mcps/resend/entry.json | 36 +++++++++ registry/mcps/revenuecat/entry.json | 29 ++++++++ registry/mcps/rootly/entry.json | 29 ++++++++ registry/mcps/sanity/entry.json | 29 ++++++++ registry/mcps/sap-fiori/entry.json | 31 ++++++++ registry/mcps/sap-mdk/entry.json | 29 ++++++++ registry/mcps/semgrep/entry.json | 26 +++++++ registry/mcps/serena/entry.json | 28 +++++++ registry/mcps/shopify-dev/entry.json | 28 +++++++ registry/mcps/slack/entry.json | 28 +++++++ registry/mcps/sonarqube/entry.json | 30 ++++++++ registry/mcps/sonatype-guide/entry.json | 37 ++++++++++ registry/mcps/terraform/entry.json | 37 ++++++++++ registry/mcps/twilio-docs/entry.json | 29 ++++++++ registry/mcps/ui5/entry.json | 26 +++++++ registry/mcps/valtown/entry.json | 29 ++++++++ registry/mcps/vanta-aus/entry.json | 29 ++++++++ registry/mcps/vanta-eu/entry.json | 29 ++++++++ registry/mcps/vanta-us/entry.json | 29 ++++++++ registry/mcps/vercel/entry.json | 27 +++++++ registry/mcps/visualization/entry.json | 34 +++++++++ registry/mcps/windsor-ai/entry.json | 29 ++++++++ registry/mcps/wix/entry.json | 29 ++++++++ registry/mcps/zoom-docs/entry.json | 38 ++++++++++ registry/mcps/zoom-whiteboard/entry.json | 37 ++++++++++ registry/mcps/zoominfo/entry.json | 29 ++++++++ registry/mcps/zscaler/entry.json | 47 ++++++++++++ 105 files changed, 3288 insertions(+) create mode 100644 registry/mcps/adobe-for-creativity/entry.json create mode 100644 registry/mcps/aikido/entry.json create mode 100644 registry/mcps/amplitude/entry.json create mode 100644 registry/mcps/apollo/entry.json create mode 100644 registry/mcps/appwrite-api/entry.json create mode 100644 registry/mcps/appwrite-docs/entry.json create mode 100644 registry/mcps/atlan/entry.json create mode 100644 registry/mcps/atlassian-ads/entry.json create mode 100644 registry/mcps/atlassian/entry.json create mode 100644 registry/mcps/aurora-dsql/entry.json create mode 100644 registry/mcps/aws-mcp/entry.json create mode 100644 registry/mcps/aws-serverless-mcp/entry.json create mode 100644 registry/mcps/awsiac/entry.json create mode 100644 registry/mcps/awsknowledge/entry.json create mode 100644 registry/mcps/awspricing/entry.json create mode 100644 registry/mcps/azure/entry.json create mode 100644 registry/mcps/bigdata-com/entry.json create mode 100644 registry/mcps/buildkite/entry.json create mode 100644 registry/mcps/cds-mcp/entry.json create mode 100644 registry/mcps/circle/entry.json create mode 100644 registry/mcps/circleback/entry.json create mode 100644 registry/mcps/cloudflare-api/entry.json create mode 100644 registry/mcps/cloudflare-bindings/entry.json create mode 100644 registry/mcps/cloudflare-builds/entry.json create mode 100644 registry/mcps/cloudflare-docs/entry.json create mode 100644 registry/mcps/cloudflare-observability/entry.json create mode 100644 registry/mcps/cloudinary-analysis/entry.json create mode 100644 registry/mcps/cloudinary-asset-mgmt/entry.json create mode 100644 registry/mcps/cloudinary-env-config/entry.json create mode 100644 registry/mcps/cloudinary-mediaflows/entry.json create mode 100644 registry/mcps/cloudinary-smd/entry.json create mode 100644 registry/mcps/cockroachdb-cloud/entry.json create mode 100644 registry/mcps/codspeed/entry.json create mode 100644 registry/mcps/convex/entry.json create mode 100644 registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json create mode 100644 registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json create mode 100644 registry/mcps/datacloud-bigquery-toolbox/entry.json create mode 100644 registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json create mode 100644 registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json create mode 100644 registry/mcps/datacloud-dataproc-toolbox/entry.json create mode 100644 registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json create mode 100644 registry/mcps/datacloud-serverless-spark-toolbox/entry.json create mode 100644 registry/mcps/datacloud-spanner-toolbox/entry.json create mode 100644 registry/mcps/endor-cli-tools/entry.json create mode 100644 registry/mcps/expo/entry.json create mode 100644 registry/mcps/fiftyone/entry.json create mode 100644 registry/mcps/firebase/entry.json create mode 100644 registry/mcps/forge/entry.json create mode 100644 registry/mcps/fullstory/entry.json create mode 100644 registry/mcps/graphos-tools/entry.json create mode 100644 registry/mcps/greptile/entry.json create mode 100644 registry/mcps/huggingface-skills/entry.json create mode 100644 registry/mcps/hunter/entry.json create mode 100644 registry/mcps/intercom/entry.json create mode 100644 registry/mcps/laravel-boost/entry.json create mode 100644 registry/mcps/legalzoom/entry.json create mode 100644 registry/mcps/logfire/entry.json create mode 100644 registry/mcps/mapbox-devkit/entry.json create mode 100644 registry/mcps/mapbox-docs/entry.json create mode 100644 registry/mcps/mapbox/entry.json create mode 100644 registry/mcps/mercadopago/entry.json create mode 100644 registry/mcps/microsoft-learn/entry.json create mode 100644 registry/mcps/mintlify/entry.json create mode 100644 registry/mcps/miro/entry.json create mode 100644 registry/mcps/mongodb/entry.json create mode 100644 registry/mcps/neon/entry.json create mode 100644 registry/mcps/nimble/entry.json create mode 100644 registry/mcps/notebook/entry.json create mode 100644 registry/mcps/pagerduty/entry.json create mode 100644 registry/mcps/pinecone/entry.json create mode 100644 registry/mcps/planetscale/entry.json create mode 100644 registry/mcps/playwright/entry.json create mode 100644 registry/mcps/postman/entry.json create mode 100644 registry/mcps/prisma-local/entry.json create mode 100644 registry/mcps/prisma-remote/entry.json create mode 100644 registry/mcps/qt-docs/entry.json create mode 100644 registry/mcps/quarkus-agent/entry.json create mode 100644 registry/mcps/railway/entry.json create mode 100644 registry/mcps/resend/entry.json create mode 100644 registry/mcps/revenuecat/entry.json create mode 100644 registry/mcps/rootly/entry.json create mode 100644 registry/mcps/sanity/entry.json create mode 100644 registry/mcps/sap-fiori/entry.json create mode 100644 registry/mcps/sap-mdk/entry.json create mode 100644 registry/mcps/semgrep/entry.json create mode 100644 registry/mcps/serena/entry.json create mode 100644 registry/mcps/shopify-dev/entry.json create mode 100644 registry/mcps/slack/entry.json create mode 100644 registry/mcps/sonarqube/entry.json create mode 100644 registry/mcps/sonatype-guide/entry.json create mode 100644 registry/mcps/terraform/entry.json create mode 100644 registry/mcps/twilio-docs/entry.json create mode 100644 registry/mcps/ui5/entry.json create mode 100644 registry/mcps/valtown/entry.json create mode 100644 registry/mcps/vanta-aus/entry.json create mode 100644 registry/mcps/vanta-eu/entry.json create mode 100644 registry/mcps/vanta-us/entry.json create mode 100644 registry/mcps/vercel/entry.json create mode 100644 registry/mcps/visualization/entry.json create mode 100644 registry/mcps/windsor-ai/entry.json create mode 100644 registry/mcps/wix/entry.json create mode 100644 registry/mcps/zoom-docs/entry.json create mode 100644 registry/mcps/zoom-whiteboard/entry.json create mode 100644 registry/mcps/zoominfo/entry.json create mode 100644 registry/mcps/zscaler/entry.json diff --git a/registry/mcps/adobe-for-creativity/entry.json b/registry/mcps/adobe-for-creativity/entry.json new file mode 100644 index 0000000..2eba84d --- /dev/null +++ b/registry/mcps/adobe-for-creativity/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "adobe-for-creativity", + "type": "mcp", + "name": "Adobe for Creativity", + "tagline": "Connect Cline to Adobe for Creativity", + "description": "Brings together Adobe Creative Cloud tools for images, vectors, design, and video. Edit multiple assets at once, adapt for different platforms, and complete multi-step creative workflows for polished results.", + "author": { + "name": "Adobe" + }, + "tags": [ + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "adobe-for-creativity", + "--transport", + "http", + "https://adobe-creativity.adobe.io/mcp" + ], + "notes": "Imported from plugin bundle config `adobe-for-creativity/.mcp.json`." + }, + "repo": "https://github.com/adobe/skills", + "license": "Apache-2.0" +} diff --git a/registry/mcps/aikido/entry.json b/registry/mcps/aikido/entry.json new file mode 100644 index 0000000..a0a662f --- /dev/null +++ b/registry/mcps/aikido/entry.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "aikido", + "type": "mcp", + "name": "Aikido", + "tagline": "Connect Cline to Aikido", + "description": "Connect Cline to Aikido through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Aikido Security" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "aikido", + "--", + "npx", + "-y", + "@aikidosec/mcp@1.0.9" + ], + "notes": "Imported from plugin bundle config `aikido/.mcp.json`." + }, + "homepage": "https://help.aikido.dev/ide-plugins/aikido-mcp", + "repo": "https://github.com/AikidoSec/aikido-claude-plugin", + "license": "MIT" +} diff --git a/registry/mcps/amplitude/entry.json b/registry/mcps/amplitude/entry.json new file mode 100644 index 0000000..41dc5e6 --- /dev/null +++ b/registry/mcps/amplitude/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "amplitude", + "type": "mcp", + "name": "Amplitude", + "tagline": "Connect Cline to Amplitude", + "description": "Connect Cline to Amplitude through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Amplitude" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "amplitude", + "--transport", + "http", + "https://mcp.amplitude.com/mcp" + ], + "notes": "Imported from plugin bundle config `amplitude/.mcp.json`." + }, + "homepage": "https://github.com/amplitude/mcp-marketplace", + "repo": "https://github.com/amplitude/mcp-marketplace", + "license": "MIT" +} diff --git a/registry/mcps/apollo/entry.json b/registry/mcps/apollo/entry.json new file mode 100644 index 0000000..b004a34 --- /dev/null +++ b/registry/mcps/apollo/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "apollo", + "type": "mcp", + "name": "Apollo", + "tagline": "Connect Cline to Apollo", + "description": "Connect Cline to Apollo through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Apollo.io" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "apollo", + "--transport", + "http", + "https://mcp.apollo.io/mcp" + ], + "notes": "Imported from plugin bundle config `apollo/.mcp.json`." + }, + "homepage": "https://www.apollo.io/", + "repo": "https://github.com/apolloio/apollo-mcp-plugin", + "license": "MIT" +} diff --git a/registry/mcps/appwrite-api/entry.json b/registry/mcps/appwrite-api/entry.json new file mode 100644 index 0000000..22d9720 --- /dev/null +++ b/registry/mcps/appwrite-api/entry.json @@ -0,0 +1,45 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "appwrite-api", + "type": "mcp", + "name": "Appwrite API", + "tagline": "Connect Cline to Appwrite API", + "description": "Connect Cline to Appwrite API through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Appwrite" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "appwrite-api", + "--", + "uvx", + "mcp-server-appwrite" + ], + "env": [ + { + "name": "APPWRITE_ENDPOINT", + "required": true, + "description": "Appwrite API value for appwrite endpoint." + }, + { + "name": "APPWRITE_PROJECT_ID", + "required": true, + "description": "Appwrite API value for appwrite project id." + }, + { + "name": "APPWRITE_API_KEY", + "required": true, + "description": "Appwrite API value for appwrite api key." + } + ], + "notes": "Imported from plugin bundle config `appwrite/.mcp.json`." + }, + "homepage": "https://appwrite.io/docs/tooling/ai/ai-dev-tools/claude-code", + "repo": "https://github.com/appwrite/claude-plugin", + "license": "MIT" +} diff --git a/registry/mcps/appwrite-docs/entry.json b/registry/mcps/appwrite-docs/entry.json new file mode 100644 index 0000000..ff46b12 --- /dev/null +++ b/registry/mcps/appwrite-docs/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "appwrite-docs", + "type": "mcp", + "name": "Appwrite Docs", + "tagline": "Connect Cline to Appwrite Docs", + "description": "Connect Cline to Appwrite Docs through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Appwrite" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "appwrite-docs", + "--transport", + "http", + "https://mcp-for-docs.appwrite.io" + ], + "notes": "Imported from plugin bundle config `appwrite/.mcp.json`." + }, + "homepage": "https://appwrite.io/docs/tooling/ai/ai-dev-tools/claude-code", + "repo": "https://github.com/appwrite/claude-plugin", + "license": "MIT" +} diff --git a/registry/mcps/atlan/entry.json b/registry/mcps/atlan/entry.json new file mode 100644 index 0000000..e54d1d0 --- /dev/null +++ b/registry/mcps/atlan/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "atlan", + "type": "mcp", + "name": "Atlan", + "tagline": "Connect Cline to Atlan", + "description": "Connect Cline to Atlan through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Atlan" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "atlan", + "--transport", + "http", + "https://mcp.atlan.com/mcp" + ], + "notes": "Imported from plugin bundle config `atlan/.mcp.json`." + }, + "homepage": "https://atlan.com/docs", + "repo": "https://github.com/atlanhq/agent-toolkit", + "license": "Apache-2.0" +} diff --git a/registry/mcps/atlassian-ads/entry.json b/registry/mcps/atlassian-ads/entry.json new file mode 100644 index 0000000..6bd0491 --- /dev/null +++ b/registry/mcps/atlassian-ads/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "atlassian-ads", + "type": "mcp", + "name": "Atlassian Ads", + "tagline": "Connect Cline to Atlassian Ads", + "description": "Forge app builder skill bundle with Forge MCP integration for Atlassian Forge workflows.", + "author": { + "name": "Atlassian Labs" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "atlassian-ads", + "--transport", + "http", + "https://mcp.atlassian.com/v1/ads/public/mcp" + ], + "notes": "Imported from plugin bundle config `forge-skills/.mcp.json`." + } +} diff --git a/registry/mcps/atlassian/entry.json b/registry/mcps/atlassian/entry.json new file mode 100644 index 0000000..a7a738e --- /dev/null +++ b/registry/mcps/atlassian/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "atlassian", + "type": "mcp", + "name": "Atlassian", + "tagline": "Connect Cline to Atlassian", + "description": "Connect to Atlassian products including Jira and Confluence. Search and create issues, access documentation, manage sprints, and integrate your development workflow with Atlassian's collaboration tools.", + "author": { + "name": "Atlassian" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "atlassian", + "--transport", + "http", + "https://mcp.atlassian.com/v1/mcp/authv2" + ], + "notes": "Imported from plugin bundle config `atlassian/.mcp.json`." + } +} diff --git a/registry/mcps/aurora-dsql/entry.json b/registry/mcps/aurora-dsql/entry.json new file mode 100644 index 0000000..5d45525 --- /dev/null +++ b/registry/mcps/aurora-dsql/entry.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "aurora-dsql", + "type": "mcp", + "name": "Aurora DSQL", + "tagline": "Connect Cline to Aurora DSQL", + "description": "Expert database guidance for the AWS database portfolio. Design schemas, execute queries, handle migrations, and choose the right database for your workload.", + "author": { + "name": "AWS" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "aurora-dsql", + "--", + "uvx", + "awslabs.aurora-dsql-mcp-server@latest" + ], + "env": [ + { + "name": "FASTMCP_LOG_LEVEL", + "required": true, + "description": "Aurora DSQL value for fastmcp log level." + } + ], + "notes": "Imported from plugin bundle config `databases-on-aws/.mcp.json`." + }, + "homepage": "https://github.com/awslabs/agent-plugins", + "repo": "https://github.com/awslabs/agent-plugins", + "license": "Apache-2.0" +} diff --git a/registry/mcps/aws-mcp/entry.json b/registry/mcps/aws-mcp/entry.json new file mode 100644 index 0000000..209d1c5 --- /dev/null +++ b/registry/mcps/aws-mcp/entry.json @@ -0,0 +1,33 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "aws-mcp", + "type": "mcp", + "name": "AWS Data Analytics", + "tagline": "Connect Cline to AWS Data Analytics", + "description": "Data lake, analytics, and ETL workflows with S3 Tables, AWS Glue, and Athena. Covers managed Iceberg tables on S3 Tables, ingestion from JDBC databases (Oracle, SQL Server, PostgreSQL, MySQL, RDS), Amazon Redshift, Snowflake, BigQuery, and DynamoDB, AWS Glue Data Catalog inventory and asset discovery, federated Athena queries, and vector storage and semantic search on Amazon S3 Vectors.", + "author": { + "name": "AWS" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "aws-mcp", + "--", + "uvx", + "mcp-proxy-for-aws@1.6.0", + "https://aws-mcp.us-east-1.api.aws/mcp", + "--skip-auth", + "--metadata", + "INSTALL_SOURCE=agent-toolkit" + ], + "notes": "Imported from plugin bundle config `aws-data-analytics/.mcp.json`." + }, + "homepage": "https://aws.amazon.com/products/developer-tools/agent-toolkit-for-aws/", + "repo": "https://github.com/aws/agent-toolkit-for-aws", + "license": "Apache-2.0" +} diff --git a/registry/mcps/aws-serverless-mcp/entry.json b/registry/mcps/aws-serverless-mcp/entry.json new file mode 100644 index 0000000..e0450e9 --- /dev/null +++ b/registry/mcps/aws-serverless-mcp/entry.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "aws-serverless-mcp", + "type": "mcp", + "name": "AWS Serverless", + "tagline": "Connect Cline to AWS Serverless", + "description": "Design, build, deploy, test, and debug serverless applications with AWS Serverless services.", + "author": { + "name": "AWS" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "aws-serverless-mcp", + "--", + "uvx", + "awslabs.aws-serverless-mcp-server@latest", + "--allow-write" + ], + "env": [ + { + "name": "FASTMCP_LOG_LEVEL", + "required": true, + "description": "AWS Serverless value for fastmcp log level." + } + ], + "notes": "Imported from plugin bundle config `aws-serverless/.mcp.json`." + }, + "homepage": "https://github.com/awslabs/agent-plugins", + "repo": "https://github.com/awslabs/agent-plugins", + "license": "Apache-2.0" +} diff --git a/registry/mcps/awsiac/entry.json b/registry/mcps/awsiac/entry.json new file mode 100644 index 0000000..5996981 --- /dev/null +++ b/registry/mcps/awsiac/entry.json @@ -0,0 +1,35 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "awsiac", + "type": "mcp", + "name": "AWS IaC", + "tagline": "Connect Cline to AWS IaC", + "description": "AWS development toolkit \u2014 34 skills, 11 agents, and 3 MCP servers for building, migrating, and performing architecture reviews on AWS.", + "author": { + "name": "AWS" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "awsiac", + "--", + "uvx", + "awslabs.aws-iac-mcp-server@latest" + ], + "env": [ + { + "name": "FASTMCP_LOG_LEVEL", + "required": true, + "description": "AWS IaC value for fastmcp log level." + } + ], + "notes": "Imported from plugin bundle config `aws-dev-toolkit/.mcp.json`." + }, + "homepage": "https://github.com/aws-samples/sample-claude-code-plugins-for-startups/tree/main/plugins/aws-dev-toolkit", + "repo": "https://github.com/aws-samples/sample-claude-code-plugins-for-startups", + "license": "MIT-0" +} diff --git a/registry/mcps/awsknowledge/entry.json b/registry/mcps/awsknowledge/entry.json new file mode 100644 index 0000000..1032ce1 --- /dev/null +++ b/registry/mcps/awsknowledge/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "awsknowledge", + "type": "mcp", + "name": "AWS Knowledge", + "tagline": "Connect Cline to AWS Knowledge", + "description": "Migrate from GCP to AWS \u2014 including your entire AI stack. Moves infrastructure (Cloud Run \u2192 Fargate, Cloud SQL \u2192 RDS or Aurora, GKE \u2192 EKS), OpenAI/Gemini workloads to Amazon Bedrock, and agentic systems (LangChain, CrewAI, AutoGen, OpenAI Agents SDK) to AWS-native frameworks. Generates runnable Terraform, migration scripts, provider adapters, and deployment artifacts. Gives honest model-by-model pricing comparison...", + "author": { + "name": "AWS" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "awsknowledge", + "--transport", + "http", + "https://knowledge-mcp.global.api.aws" + ], + "notes": "Imported from plugin bundle config `migration-to-aws/.mcp.json`." + }, + "homepage": "https://github.com/awslabs/startups/tree/main/migrate", + "repo": "https://github.com/awslabs/startups", + "license": "Apache-2.0" +} diff --git a/registry/mcps/awspricing/entry.json b/registry/mcps/awspricing/entry.json new file mode 100644 index 0000000..0a83e9c --- /dev/null +++ b/registry/mcps/awspricing/entry.json @@ -0,0 +1,41 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "awspricing", + "type": "mcp", + "name": "AWS Pricing", + "tagline": "Connect Cline to AWS Pricing", + "description": "Migrate from GCP to AWS \u2014 including your entire AI stack. Moves infrastructure (Cloud Run \u2192 Fargate, Cloud SQL \u2192 RDS or Aurora, GKE \u2192 EKS), OpenAI/Gemini workloads to Amazon Bedrock, and agentic systems (LangChain, CrewAI, AutoGen, OpenAI Agents SDK) to AWS-native frameworks. Generates runnable Terraform, migration scripts, provider adapters, and deployment artifacts. Gives honest model-by-model pricing comparison...", + "author": { + "name": "AWS" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "awspricing", + "--", + "uvx", + "awslabs.aws-pricing-mcp-server@latest" + ], + "env": [ + { + "name": "FASTMCP_LOG_LEVEL", + "required": true, + "description": "AWS Pricing value for fastmcp log level." + }, + { + "name": "AWS_REGION", + "required": true, + "description": "AWS Pricing value for aws region." + } + ], + "notes": "Imported from plugin bundle config `migration-to-aws/.mcp.json`." + }, + "homepage": "https://github.com/awslabs/startups/tree/main/migrate", + "repo": "https://github.com/awslabs/startups", + "license": "Apache-2.0" +} diff --git a/registry/mcps/azure/entry.json b/registry/mcps/azure/entry.json new file mode 100644 index 0000000..2a12ca0 --- /dev/null +++ b/registry/mcps/azure/entry.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "azure", + "type": "mcp", + "name": "Azure", + "tagline": "Connect Cline to Azure", + "description": "Connect Cline to Azure through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Microsoft" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "azure", + "--", + "npx", + "-y", + "@azure/mcp@latest", + "server", + "start" + ], + "notes": "Imported from plugin bundle config `azure/.mcp.json`." + }, + "homepage": "https://github.com/microsoft/azure-skills", + "repo": "https://github.com/microsoft/azure-skills", + "license": "MIT" +} diff --git a/registry/mcps/bigdata-com/entry.json b/registry/mcps/bigdata-com/entry.json new file mode 100644 index 0000000..7d9b3a8 --- /dev/null +++ b/registry/mcps/bigdata-com/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "bigdata-com", + "type": "mcp", + "name": "Bigdata.com", + "tagline": "Connect Cline to Bigdata.com", + "description": "Financial research and market intelligence on stocks, companies, sectors, and economies. Run valuation snapshots, peer comparables, and investment memos; preview, digest, and analyze earnings (quality, reactions, surprises); assess risk, monitor catalysts, and review competitive moats and governance. Covers thematic and sector research, cross-sector and regional comparisons, country and macro analysis, G7 benchmar...", + "author": { + "name": "RavenPack" + }, + "tags": [ + "data", + "finance" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "bigdata-com", + "--transport", + "http", + "https://mcp.bigdata.com" + ], + "notes": "Imported from plugin bundle config `bigdata-com/.mcp.json`." + } +} diff --git a/registry/mcps/buildkite/entry.json b/registry/mcps/buildkite/entry.json new file mode 100644 index 0000000..a66f80f --- /dev/null +++ b/registry/mcps/buildkite/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "buildkite", + "type": "mcp", + "name": "Buildkite", + "tagline": "Connect Cline to Buildkite", + "description": "Connect Cline to Buildkite through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Buildkite" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "buildkite", + "--transport", + "http", + "https://mcp.buildkite.com/mcp" + ], + "notes": "Imported from plugin bundle config `buildkite/mcp.json`." + } +} diff --git a/registry/mcps/cds-mcp/entry.json b/registry/mcps/cds-mcp/entry.json new file mode 100644 index 0000000..7bdae62 --- /dev/null +++ b/registry/mcps/cds-mcp/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cds-mcp", + "type": "mcp", + "name": "SAP CDS", + "tagline": "Connect Cline to SAP CDS", + "description": "Model Context Protocol (MCP) server for AI-assisted development of CAP applications.", + "author": { + "name": "SAP" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cds-mcp", + "--", + "npx", + "-y", + "@cap-js/mcp-server" + ], + "notes": "Imported from plugin bundle config `cds-mcp/.mcp.json`." + }, + "homepage": "https://cap.cloud.sap/", + "repo": "https://github.com/cap-js/mcp-server", + "license": "Apache-2.0" +} diff --git a/registry/mcps/circle/entry.json b/registry/mcps/circle/entry.json new file mode 100644 index 0000000..cbd0427 --- /dev/null +++ b/registry/mcps/circle/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "circle", + "type": "mcp", + "name": "Circle", + "tagline": "Connect Cline to Circle", + "description": "Ship stablecoin apps faster with Circle skills for USDC payments, cross-chain transfers, wallets, and smart contracts.", + "author": { + "name": "Circle Technology Services" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "circle", + "--transport", + "http", + "https://api.circle.com/v1/codegen/mcp" + ], + "notes": "Imported from plugin bundle config `circle-skills/.mcp.json`." + }, + "homepage": "https://developers.circle.com", + "repo": "https://github.com/circlefin/skills", + "license": "Apache-2.0" +} diff --git a/registry/mcps/circleback/entry.json b/registry/mcps/circleback/entry.json new file mode 100644 index 0000000..91ae2b4 --- /dev/null +++ b/registry/mcps/circleback/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "circleback", + "type": "mcp", + "name": "Circleback", + "tagline": "Connect Cline to Circleback", + "description": "Circleback conversational context integration. Search and access meetings, emails, calendar events, and more.", + "author": { + "name": "Circleback" + }, + "tags": [ + "marketing", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "circleback", + "--transport", + "http", + "https://app.circleback.ai/api/mcp" + ], + "notes": "Imported from plugin bundle config `circleback/.mcp.json`." + } +} diff --git a/registry/mcps/cloudflare-api/entry.json b/registry/mcps/cloudflare-api/entry.json new file mode 100644 index 0000000..92bdf9a --- /dev/null +++ b/registry/mcps/cloudflare-api/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudflare-api", + "type": "mcp", + "name": "Cloudflare API", + "tagline": "Connect Cline to Cloudflare API", + "description": "Skills for the Cloudflare developer platform: Workers, Durable Objects, Agents SDK, MCP servers, Wrangler CLI, and web performance", + "author": { + "name": "Cloudflare" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudflare-api", + "--transport", + "http", + "https://mcp.cloudflare.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + } +} diff --git a/registry/mcps/cloudflare-bindings/entry.json b/registry/mcps/cloudflare-bindings/entry.json new file mode 100644 index 0000000..4df98b5 --- /dev/null +++ b/registry/mcps/cloudflare-bindings/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudflare-bindings", + "type": "mcp", + "name": "Cloudflare Bindings", + "tagline": "Connect Cline to Cloudflare Bindings", + "description": "Skills for the Cloudflare developer platform: Workers, Durable Objects, Agents SDK, MCP servers, Wrangler CLI, and web performance", + "author": { + "name": "Cloudflare" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudflare-bindings", + "--transport", + "http", + "https://bindings.mcp.cloudflare.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + } +} diff --git a/registry/mcps/cloudflare-builds/entry.json b/registry/mcps/cloudflare-builds/entry.json new file mode 100644 index 0000000..619d896 --- /dev/null +++ b/registry/mcps/cloudflare-builds/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudflare-builds", + "type": "mcp", + "name": "Cloudflare Builds", + "tagline": "Connect Cline to Cloudflare Builds", + "description": "Skills for the Cloudflare developer platform: Workers, Durable Objects, Agents SDK, MCP servers, Wrangler CLI, and web performance", + "author": { + "name": "Cloudflare" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudflare-builds", + "--transport", + "http", + "https://builds.mcp.cloudflare.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + } +} diff --git a/registry/mcps/cloudflare-docs/entry.json b/registry/mcps/cloudflare-docs/entry.json new file mode 100644 index 0000000..dc5464d --- /dev/null +++ b/registry/mcps/cloudflare-docs/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudflare-docs", + "type": "mcp", + "name": "Cloudflare Docs", + "tagline": "Connect Cline to Cloudflare Docs", + "description": "Skills for the Cloudflare developer platform: Workers, Durable Objects, Agents SDK, MCP servers, Wrangler CLI, and web performance", + "author": { + "name": "Cloudflare" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudflare-docs", + "--transport", + "http", + "https://docs.mcp.cloudflare.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + } +} diff --git a/registry/mcps/cloudflare-observability/entry.json b/registry/mcps/cloudflare-observability/entry.json new file mode 100644 index 0000000..e13b0df --- /dev/null +++ b/registry/mcps/cloudflare-observability/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudflare-observability", + "type": "mcp", + "name": "Cloudflare Observability", + "tagline": "Connect Cline to Cloudflare Observability", + "description": "Skills for the Cloudflare developer platform: Workers, Durable Objects, Agents SDK, MCP servers, Wrangler CLI, and web performance", + "author": { + "name": "Cloudflare" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudflare-observability", + "--transport", + "http", + "https://observability.mcp.cloudflare.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + } +} diff --git a/registry/mcps/cloudinary-analysis/entry.json b/registry/mcps/cloudinary-analysis/entry.json new file mode 100644 index 0000000..5819778 --- /dev/null +++ b/registry/mcps/cloudinary-analysis/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudinary-analysis", + "type": "mcp", + "name": "Cloudinary Analysis", + "tagline": "Connect Cline to Cloudinary Analysis", + "description": "Connect Cline to Cloudinary Analysis through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Cloudinary" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudinary-analysis", + "--transport", + "sse", + "https://analysis.mcp.cloudinary.com/sse" + ], + "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + }, + "homepage": "https://cloudinary.com", + "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", + "license": "MIT" +} diff --git a/registry/mcps/cloudinary-asset-mgmt/entry.json b/registry/mcps/cloudinary-asset-mgmt/entry.json new file mode 100644 index 0000000..3086c2f --- /dev/null +++ b/registry/mcps/cloudinary-asset-mgmt/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudinary-asset-mgmt", + "type": "mcp", + "name": "Cloudinary Asset Mgmt", + "tagline": "Connect Cline to Cloudinary Asset Mgmt", + "description": "Connect Cline to Cloudinary Asset Mgmt through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Cloudinary" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudinary-asset-mgmt", + "--transport", + "http", + "https://asset-management.mcp.cloudinary.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + }, + "homepage": "https://cloudinary.com", + "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", + "license": "MIT" +} diff --git a/registry/mcps/cloudinary-env-config/entry.json b/registry/mcps/cloudinary-env-config/entry.json new file mode 100644 index 0000000..7ae534c --- /dev/null +++ b/registry/mcps/cloudinary-env-config/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudinary-env-config", + "type": "mcp", + "name": "Cloudinary Env Config", + "tagline": "Connect Cline to Cloudinary Env Config", + "description": "Connect Cline to Cloudinary Env Config through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Cloudinary" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudinary-env-config", + "--transport", + "http", + "https://environment-config.mcp.cloudinary.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + }, + "homepage": "https://cloudinary.com", + "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", + "license": "MIT" +} diff --git a/registry/mcps/cloudinary-mediaflows/entry.json b/registry/mcps/cloudinary-mediaflows/entry.json new file mode 100644 index 0000000..dbde2b4 --- /dev/null +++ b/registry/mcps/cloudinary-mediaflows/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudinary-mediaflows", + "type": "mcp", + "name": "Cloudinary Mediaflows", + "tagline": "Connect Cline to Cloudinary Mediaflows", + "description": "Connect Cline to Cloudinary Mediaflows through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Cloudinary" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudinary-mediaflows", + "--transport", + "http", + "https://mediaflows.mcp.cloudinary.com/v2/mcp", + "--header", + "cld-cloud-name: cloud_name", + "--header", + "cld-api-key: api_key", + "--header", + "cld-secret: api_secret" + ], + "notes": "Imported from plugin bundle config `cloudinary/mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://cloudinary.com", + "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", + "license": "MIT" +} diff --git a/registry/mcps/cloudinary-smd/entry.json b/registry/mcps/cloudinary-smd/entry.json new file mode 100644 index 0000000..74aa115 --- /dev/null +++ b/registry/mcps/cloudinary-smd/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cloudinary-smd", + "type": "mcp", + "name": "Cloudinary Structured Metadata", + "tagline": "Connect Cline to Cloudinary Structured Metadata", + "description": "Connect Cline to Cloudinary Structured Metadata through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Cloudinary" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cloudinary-smd", + "--transport", + "http", + "https://structured-metadata.mcp.cloudinary.com/mcp" + ], + "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + }, + "homepage": "https://cloudinary.com", + "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", + "license": "MIT" +} diff --git a/registry/mcps/cockroachdb-cloud/entry.json b/registry/mcps/cockroachdb-cloud/entry.json new file mode 100644 index 0000000..3502c6f --- /dev/null +++ b/registry/mcps/cockroachdb-cloud/entry.json @@ -0,0 +1,38 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "cockroachdb-cloud", + "type": "mcp", + "name": "Cockroachdb Cloud", + "tagline": "Connect Cline to Cockroachdb Cloud", + "description": "Connect Cline to Cockroachdb Cloud through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Cockroach Labs" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "cockroachdb-cloud", + "--transport", + "http", + "https://cockroachlabs.cloud/mcp", + "--header", + "mcp-cluster-id: ${COCKROACHDB_CLUSTER_ID}" + ], + "env": [ + { + "name": "COCKROACHDB_CLUSTER_ID", + "required": true, + "description": "Cockroachdb Cloud value for cockroachdb cluster id." + } + ], + "notes": "Imported from plugin bundle config `cockroachdb/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://github.com/cockroachdb/claude-plugin", + "repo": "https://github.com/cockroachdb/claude-plugin", + "license": "Apache-2.0" +} diff --git a/registry/mcps/codspeed/entry.json b/registry/mcps/codspeed/entry.json new file mode 100644 index 0000000..82c8183 --- /dev/null +++ b/registry/mcps/codspeed/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "codspeed", + "type": "mcp", + "name": "Codspeed", + "tagline": "Connect Cline to Codspeed", + "description": "Connect Cline to Codspeed through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "CodSpeed" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "codspeed", + "--transport", + "http", + "https://mcp.codspeed.io/mcp" + ], + "notes": "Imported from plugin bundle config `codspeed/.mcp.json`." + }, + "homepage": "https://codspeed.io", + "repo": "https://github.com/CodSpeedHQ/codspeed", + "license": "MIT" +} diff --git a/registry/mcps/convex/entry.json b/registry/mcps/convex/entry.json new file mode 100644 index 0000000..6d30a28 --- /dev/null +++ b/registry/mcps/convex/entry.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "convex", + "type": "mcp", + "name": "Convex", + "tagline": "Connect Cline to Convex", + "description": "Bundled design skill, code-writing subagent, typecheck-on-edit hook, runtime-error monitor, and MCP server for live deployment introspection. Reactive, type-safe backends on one platform \u2014 schema, real-time, auth, file storage, scheduled jobs, and AI agents.", + "author": { + "name": "Convex" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "convex", + "--", + "npx", + "-y", + "convex@latest", + "mcp", + "start" + ], + "notes": "Imported from plugin bundle config `convex/.mcp.json`." + }, + "homepage": "https://github.com/get-convex/convex-backend-skill", + "repo": "https://github.com/get-convex/convex-backend-skill", + "license": "Apache-2.0" +} diff --git a/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json b/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json new file mode 100644 index 0000000..b77dad3 --- /dev/null +++ b/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-alloydb-postgres-admin-toolbox", + "type": "mcp", + "name": "AlloyDB PostgreSQL Admin Toolbox", + "tagline": "Connect Cline to AlloyDB PostgreSQL Admin Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Data" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-alloydb-postgres-admin-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "alloydb-postgres-admin", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json b/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json new file mode 100644 index 0000000..3e727e3 --- /dev/null +++ b/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json @@ -0,0 +1,73 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-alloydb-postgres-toolbox", + "type": "mcp", + "name": "AlloyDB PostgreSQL Toolbox", + "tagline": "Connect Cline to AlloyDB PostgreSQL Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-alloydb-postgres-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "alloydb-postgres", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "ALLOYDB_POSTGRES_CLUSTER", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres cluster." + }, + { + "name": "ALLOYDB_POSTGRES_DATABASE", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres database." + }, + { + "name": "ALLOYDB_POSTGRES_INSTANCE", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres instance." + }, + { + "name": "ALLOYDB_POSTGRES_IP_TYPE", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres ip type." + }, + { + "name": "ALLOYDB_POSTGRES_PASSWORD", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres password." + }, + { + "name": "ALLOYDB_POSTGRES_PROJECT", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres project." + }, + { + "name": "ALLOYDB_POSTGRES_REGION", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres region." + }, + { + "name": "ALLOYDB_POSTGRES_USER", + "required": true, + "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres user." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-bigquery-toolbox/entry.json b/registry/mcps/datacloud-bigquery-toolbox/entry.json new file mode 100644 index 0000000..b62dece --- /dev/null +++ b/registry/mcps/datacloud-bigquery-toolbox/entry.json @@ -0,0 +1,43 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-bigquery-toolbox", + "type": "mcp", + "name": "BigQuery Toolbox", + "tagline": "Connect Cline to BigQuery Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-bigquery-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "bigquery", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "BIGQUERY_LOCATION", + "required": true, + "description": "BigQuery Toolbox value for bigquery location." + }, + { + "name": "BIGQUERY_PROJECT", + "required": true, + "description": "BigQuery Toolbox value for bigquery project." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json b/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json new file mode 100644 index 0000000..66f5954 --- /dev/null +++ b/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-cloud-sql-postgresql-admin-toolbox", + "type": "mcp", + "name": "Cloud SQL PostgreSQL Admin Toolbox", + "tagline": "Connect Cline to Cloud SQL PostgreSQL Admin Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Data" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-cloud-sql-postgresql-admin-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "cloud-sql-postgres-admin", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json b/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json new file mode 100644 index 0000000..73d001e --- /dev/null +++ b/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json @@ -0,0 +1,68 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-cloud-sql-postgresql-toolbox", + "type": "mcp", + "name": "Cloud SQL PostgreSQL Toolbox", + "tagline": "Connect Cline to Cloud SQL PostgreSQL Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Data" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-cloud-sql-postgresql-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "cloud-sql-postgres", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "CLOUD_SQL_POSTGRES_DATABASE", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres database." + }, + { + "name": "CLOUD_SQL_POSTGRES_INSTANCE", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres instance." + }, + { + "name": "CLOUD_SQL_POSTGRES_IP_TYPE", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres ip type." + }, + { + "name": "CLOUD_SQL_POSTGRES_PASSWORD", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres password." + }, + { + "name": "CLOUD_SQL_POSTGRES_PROJECT", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres project." + }, + { + "name": "CLOUD_SQL_POSTGRES_REGION", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres region." + }, + { + "name": "CLOUD_SQL_POSTGRES_USER", + "required": true, + "description": "Data Agent Kit Starter Pack value for cloud sql postgres user." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-dataproc-toolbox/entry.json b/registry/mcps/datacloud-dataproc-toolbox/entry.json new file mode 100644 index 0000000..240cc59 --- /dev/null +++ b/registry/mcps/datacloud-dataproc-toolbox/entry.json @@ -0,0 +1,43 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-dataproc-toolbox", + "type": "mcp", + "name": "Dataproc Toolbox", + "tagline": "Connect Cline to Dataproc Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-dataproc-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "dataproc", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "DATAPROC_PROJECT", + "required": true, + "description": "Dataproc Toolbox value for dataproc project." + }, + { + "name": "DATAPROC_REGION", + "required": true, + "description": "Dataproc Toolbox value for dataproc region." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json b/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json new file mode 100644 index 0000000..d2472f6 --- /dev/null +++ b/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json @@ -0,0 +1,39 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-knowledge-catalog-toolbox", + "type": "mcp", + "name": "Dataplex Knowledge Catalog Toolbox", + "tagline": "Connect Cline to Dataplex Knowledge Catalog Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-knowledge-catalog-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "dataplex", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "DATAPLEX_PROJECT", + "required": true, + "description": "Dataplex Knowledge Catalog Toolbox value for dataplex project." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-serverless-spark-toolbox/entry.json b/registry/mcps/datacloud-serverless-spark-toolbox/entry.json new file mode 100644 index 0000000..f933102 --- /dev/null +++ b/registry/mcps/datacloud-serverless-spark-toolbox/entry.json @@ -0,0 +1,43 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-serverless-spark-toolbox", + "type": "mcp", + "name": "Serverless Spark Toolbox", + "tagline": "Connect Cline to Serverless Spark Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-serverless-spark-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "serverless-spark", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "SERVERLESS_SPARK_PROJECT", + "required": true, + "description": "Serverless Spark Toolbox value for serverless spark project." + }, + { + "name": "SERVERLESS_SPARK_LOCATION", + "required": true, + "description": "Serverless Spark Toolbox value for serverless spark location." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/datacloud-spanner-toolbox/entry.json b/registry/mcps/datacloud-spanner-toolbox/entry.json new file mode 100644 index 0000000..88aa8a9 --- /dev/null +++ b/registry/mcps/datacloud-spanner-toolbox/entry.json @@ -0,0 +1,53 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "datacloud-spanner-toolbox", + "type": "mcp", + "name": "Spanner Toolbox", + "tagline": "Connect Cline to Spanner Toolbox", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Google Cloud" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "datacloud-spanner-toolbox", + "--", + "npx", + "-y", + "@toolbox-sdk/server@>=1.1.0", + "--prebuilt", + "spanner", + "--stdio", + "--user-agent-metadata", + "datacloud.codex" + ], + "env": [ + { + "name": "SPANNER_DATABASE", + "required": true, + "description": "Spanner Toolbox value for spanner database." + }, + { + "name": "SPANNER_DIALECT", + "required": true, + "description": "Spanner Toolbox value for spanner dialect." + }, + { + "name": "SPANNER_INSTANCE", + "required": true, + "description": "Spanner Toolbox value for spanner instance." + }, + { + "name": "SPANNER_PROJECT", + "required": true, + "description": "Spanner Toolbox value for spanner project." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/endor-cli-tools/entry.json b/registry/mcps/endor-cli-tools/entry.json new file mode 100644 index 0000000..d290603 --- /dev/null +++ b/registry/mcps/endor-cli-tools/entry.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "endor-cli-tools", + "type": "mcp", + "name": "Endor Labs", + "tagline": "Connect Cline to Endor Labs", + "description": "Set up endorctl and use Endor Labs to scan, prioritize, and fix security risks across your software supply chain", + "author": { + "name": "Endor Labs" + }, + "tags": [ + "security" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "endor-cli-tools", + "--", + "npx", + "-y", + "endorctl", + "ai-tools", + "mcp-server" + ], + "notes": "Imported from plugin bundle config `ai-plugins/.mcp.json`." + }, + "repo": "https://github.com/endorlabs/ai-plugins", + "license": "MIT" +} diff --git a/registry/mcps/expo/entry.json b/registry/mcps/expo/entry.json new file mode 100644 index 0000000..9856d87 --- /dev/null +++ b/registry/mcps/expo/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "expo", + "type": "mcp", + "name": "Expo", + "tagline": "Connect Cline to Expo", + "description": "Official Expo skills for building, deploying, upgrading, and debugging Expo and React Native apps.", + "author": { + "name": "Expo Team" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "expo", + "--transport", + "http", + "https://mcp.expo.dev/mcp" + ], + "notes": "Imported from plugin bundle config `expo/.mcp.json`." + }, + "homepage": "https://docs.expo.dev/skills/", + "repo": "https://github.com/expo/skills/tree/main/plugins/expo", + "license": "MIT" +} diff --git a/registry/mcps/fiftyone/entry.json b/registry/mcps/fiftyone/entry.json new file mode 100644 index 0000000..1962a25 --- /dev/null +++ b/registry/mcps/fiftyone/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "fiftyone", + "type": "mcp", + "name": "FiftyOne Skills", + "tagline": "Connect Cline to FiftyOne Skills", + "description": "Agent Context Protocol (ACP) skills for computer vision workflows using FiftyOne.", + "author": { + "name": "Voxel51" + }, + "tags": [ + "data", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "fiftyone", + "--", + "fiftyone-mcp" + ], + "notes": "Imported from plugin bundle config `fiftyone/.mcp.json`. The `fiftyone-mcp` CLI must be available on PATH before starting this MCP server." + }, + "homepage": "https://docs.voxel51.com/", + "repo": "https://github.com/voxel51/fiftyone-skills", + "license": "Apache-2.0" +} diff --git a/registry/mcps/firebase/entry.json b/registry/mcps/firebase/entry.json new file mode 100644 index 0000000..f9f8853 --- /dev/null +++ b/registry/mcps/firebase/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "firebase", + "type": "mcp", + "name": "Firebase", + "tagline": "Connect Cline to Firebase", + "description": "Google Firebase MCP integration. Manage Firestore databases, authentication, cloud functions, hosting, and storage. Build and manage your Firebase backend directly from your development workflow.", + "author": { + "name": "Google" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "firebase", + "--", + "npx", + "-y", + "firebase-tools@latest", + "mcp" + ], + "notes": "Imported from plugin bundle config `firebase/.mcp.json`." + } +} diff --git a/registry/mcps/forge/entry.json b/registry/mcps/forge/entry.json new file mode 100644 index 0000000..c2ef917 --- /dev/null +++ b/registry/mcps/forge/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "forge", + "type": "mcp", + "name": "Forge", + "tagline": "Connect Cline to Forge", + "description": "Forge app builder skill bundle with Forge MCP integration for Atlassian Forge workflows.", + "author": { + "name": "Atlassian Labs" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "forge", + "--transport", + "http", + "https://mcp.atlassian.com/v1/forge/mcp" + ], + "notes": "Imported from plugin bundle config `forge-skills/.mcp.json`." + } +} diff --git a/registry/mcps/fullstory/entry.json b/registry/mcps/fullstory/entry.json new file mode 100644 index 0000000..9949918 --- /dev/null +++ b/registry/mcps/fullstory/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "fullstory", + "type": "mcp", + "name": "Fullstory", + "tagline": "Connect Cline to Fullstory", + "description": "Connect Cline to Fullstory through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Fullstory" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "fullstory", + "--transport", + "http", + "https://api.fullstory.com/mcp/fullstory" + ], + "notes": "Imported from plugin bundle config `fullstory/.mcp.json`." + }, + "homepage": "https://www.fullstory.com", + "license": "MIT" +} diff --git a/registry/mcps/graphos-tools/entry.json b/registry/mcps/graphos-tools/entry.json new file mode 100644 index 0000000..250d5e9 --- /dev/null +++ b/registry/mcps/graphos-tools/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "graphos-tools", + "type": "mcp", + "name": "Graphos Tools", + "tagline": "Connect Cline to Graphos Tools", + "description": "Agent skills for AI coding agents working with Apollo GraphQL tools and technologies", + "author": { + "name": "Apollo GraphQL" + }, + "tags": [ + "sales" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "graphos-tools", + "--transport", + "http", + "https://mcp.apollographql.com" + ], + "notes": "Imported from plugin bundle config `apollo-skills/.mcp.json`." + }, + "homepage": "https://www.apollographql.com", + "repo": "https://github.com/apollographql/skills", + "license": "MIT" +} diff --git a/registry/mcps/greptile/entry.json b/registry/mcps/greptile/entry.json new file mode 100644 index 0000000..8718343 --- /dev/null +++ b/registry/mcps/greptile/entry.json @@ -0,0 +1,35 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "greptile", + "type": "mcp", + "name": "Greptile", + "tagline": "Connect Cline to Greptile", + "description": "Connect Cline to Greptile through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Greptile" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "greptile", + "--transport", + "http", + "https://api.greptile.com/mcp", + "--header", + "Authorization: Bearer ${GREPTILE_API_KEY}" + ], + "env": [ + { + "name": "GREPTILE_API_KEY", + "required": true, + "description": "Greptile value for greptile api key." + } + ], + "notes": "Imported from plugin bundle config `greptile/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://greptile.com/docs" +} diff --git a/registry/mcps/huggingface-skills/entry.json b/registry/mcps/huggingface-skills/entry.json new file mode 100644 index 0000000..ac75565 --- /dev/null +++ b/registry/mcps/huggingface-skills/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "huggingface-skills", + "type": "mcp", + "name": "Huggingface Skills", + "tagline": "Connect Cline to Huggingface Skills", + "description": "Agent Skills for AI/ML tasks including dataset creation, model training, evaluation, and research paper publishing on Hugging Face Hub", + "author": { + "name": "Hugging Face" + }, + "tags": [ + "data", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "huggingface-skills", + "--transport", + "http", + "https://huggingface.co/mcp?login" + ], + "notes": "Imported from plugin bundle config `huggingface-skills/.mcp.json`." + }, + "homepage": "https://github.com/huggingface/skills", + "repo": "https://github.com/huggingface/skills", + "license": "Apache-2.0" +} diff --git a/registry/mcps/hunter/entry.json b/registry/mcps/hunter/entry.json new file mode 100644 index 0000000..1bc1762 --- /dev/null +++ b/registry/mcps/hunter/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "hunter", + "type": "mcp", + "name": "Hunter", + "tagline": "Connect Cline to Hunter", + "description": "Find and verify professional email addresses, search contacts by domain, and enrich company data.", + "author": { + "name": "Hunter.io" + }, + "tags": [ + "data", + "sales" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "hunter", + "--transport", + "http", + "https://mcp.hunter.io/mcp" + ], + "notes": "Imported from plugin bundle config `hunter/.mcp.json`." + }, + "homepage": "https://hunter.io", + "repo": "https://github.com/hunter-io/claude-plugin", + "license": "MIT" +} diff --git a/registry/mcps/intercom/entry.json b/registry/mcps/intercom/entry.json new file mode 100644 index 0000000..4cb8ffe --- /dev/null +++ b/registry/mcps/intercom/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "intercom", + "type": "mcp", + "name": "Intercom", + "tagline": "Connect Cline to Intercom", + "description": "Connect Cline to Intercom through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Intercom" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "intercom", + "--transport", + "http", + "https://mcp.intercom.com/mcp" + ], + "notes": "Imported from plugin bundle config `intercom/.mcp.json`." + }, + "homepage": "https://developers.intercom.com", + "repo": "https://github.com/intercom/claude-plugin-external", + "license": "MIT" +} diff --git a/registry/mcps/laravel-boost/entry.json b/registry/mcps/laravel-boost/entry.json new file mode 100644 index 0000000..96bd1ff --- /dev/null +++ b/registry/mcps/laravel-boost/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "laravel-boost", + "type": "mcp", + "name": "Laravel Boost", + "tagline": "Connect Cline to Laravel Boost", + "description": "Laravel development toolkit MCP server. Provides intelligent assistance for Laravel applications including Artisan commands, Eloquent queries, routing, migrations, and framework-specific code generation.", + "author": { + "name": "Laravel" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "laravel-boost", + "--", + "php", + "artisan", + "boost:mcp" + ], + "notes": "Imported from plugin bundle config `laravel-boost/.mcp.json`. The `php` CLI must be available on PATH before starting this MCP server." + } +} diff --git a/registry/mcps/legalzoom/entry.json b/registry/mcps/legalzoom/entry.json new file mode 100644 index 0000000..5e6c83a --- /dev/null +++ b/registry/mcps/legalzoom/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "legalzoom", + "type": "mcp", + "name": "Legalzoom", + "tagline": "Connect Cline to Legalzoom", + "description": "LegalZoom Plugin - AI-powered business legal assistance with contract review and attorney consultation", + "author": { + "name": "LegalZoom" + }, + "tags": [ + "productivity", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "legalzoom", + "--transport", + "http", + "https://www.legalzoom.com/mcp/claude/v1" + ], + "notes": "Imported from plugin bundle config `legalzoom/.mcp.json`." + }, + "homepage": "https://github.com/legalzoom/claude-plugins", + "repo": "https://github.com/legalzoom/claude-plugins", + "license": "PROPRIETARY" +} diff --git a/registry/mcps/logfire/entry.json b/registry/mcps/logfire/entry.json new file mode 100644 index 0000000..6cbbe73 --- /dev/null +++ b/registry/mcps/logfire/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "logfire", + "type": "mcp", + "name": "Logfire", + "tagline": "Connect Cline to Logfire", + "description": "Add Logfire observability to Python applications with auto-instrumentation for FastAPI, httpx, asyncpg, SQLAlchemy, and more", + "author": { + "name": "Pydantic" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "logfire", + "--transport", + "http", + "https://logfire-us.pydantic.dev/mcp" + ], + "notes": "Imported from plugin bundle config `logfire/.mcp.json`." + }, + "homepage": "https://github.com/pydantic/skills/tree/main/plugins/logfire", + "repo": "https://github.com/pydantic/skills", + "license": "MIT" +} diff --git a/registry/mcps/mapbox-devkit/entry.json b/registry/mcps/mapbox-devkit/entry.json new file mode 100644 index 0000000..24cce3a --- /dev/null +++ b/registry/mcps/mapbox-devkit/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mapbox-devkit", + "type": "mcp", + "name": "Mapbox Devkit", + "tagline": "Connect Cline to Mapbox Devkit", + "description": "Mapbox skills and MCP servers for building location-aware applications with AI. Includes geospatial tools, style management, and patterns for web, iOS, Android, and AI agent frameworks.", + "author": { + "name": "Mapbox" + }, + "tags": [ + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mapbox-devkit", + "--transport", + "http", + "https://mcp-devkit.mapbox.com/mcp" + ], + "notes": "Imported from plugin bundle config `mapbox/.mcp.json`." + }, + "homepage": "https://github.com/mapbox/mapbox-agent-skills", + "repo": "https://github.com/mapbox/mapbox-agent-skills", + "license": "MIT" +} diff --git a/registry/mcps/mapbox-docs/entry.json b/registry/mcps/mapbox-docs/entry.json new file mode 100644 index 0000000..c042796 --- /dev/null +++ b/registry/mcps/mapbox-docs/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mapbox-docs", + "type": "mcp", + "name": "Mapbox Docs", + "tagline": "Connect Cline to Mapbox Docs", + "description": "Mapbox skills and MCP servers for building location-aware applications with AI. Includes geospatial tools, style management, and patterns for web, iOS, Android, and AI agent frameworks.", + "author": { + "name": "Mapbox" + }, + "tags": [ + "research", + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mapbox-docs", + "--transport", + "http", + "https://mcp-docs.mapbox.com/mcp" + ], + "notes": "Imported from plugin bundle config `mapbox/.mcp.json`." + }, + "homepage": "https://github.com/mapbox/mapbox-agent-skills", + "repo": "https://github.com/mapbox/mapbox-agent-skills", + "license": "MIT" +} diff --git a/registry/mcps/mapbox/entry.json b/registry/mcps/mapbox/entry.json new file mode 100644 index 0000000..3c467ee --- /dev/null +++ b/registry/mcps/mapbox/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mapbox", + "type": "mcp", + "name": "Mapbox", + "tagline": "Connect Cline to Mapbox", + "description": "Mapbox skills and MCP servers for building location-aware applications with AI. Includes geospatial tools, style management, and patterns for web, iOS, Android, and AI agent frameworks.", + "author": { + "name": "Mapbox" + }, + "tags": [ + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mapbox", + "--transport", + "http", + "https://mcp.mapbox.com/mcp" + ], + "notes": "Imported from plugin bundle config `mapbox/.mcp.json`." + }, + "homepage": "https://github.com/mapbox/mapbox-agent-skills", + "repo": "https://github.com/mapbox/mapbox-agent-skills", + "license": "MIT" +} diff --git a/registry/mcps/mercadopago/entry.json b/registry/mcps/mercadopago/entry.json new file mode 100644 index 0000000..bc3b722 --- /dev/null +++ b/registry/mcps/mercadopago/entry.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mercadopago", + "type": "mcp", + "name": "Mercado Pago", + "tagline": "Connect Cline to Mercado Pago", + "description": "Mercado Pago full-product integration toolkit. One agent routes to four orchestration skills (mp-integrate, mp-webhooks, mp-test-setup, mp-review) that pull live data from the official Mercado Pago MCP server. The MCP must always be connected \u2014 there is no offline mode.", + "author": { + "name": "Mercado Pago Developer Experience" + }, + "tags": [ + "data", + "finance" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mercadopago", + "--transport", + "http", + "https://mcp.mercadopago.com/mcp", + "--header", + "X-Plugin-Version: 4.0.0", + "--header", + "X-Invocation-Context: router" + ], + "notes": "Imported from plugin bundle config `mercadopago/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "repo": "https://github.com/mercadopago/mercadopago-claude-marketplace", + "license": "Apache-2.0" +} diff --git a/registry/mcps/microsoft-learn/entry.json b/registry/mcps/microsoft-learn/entry.json new file mode 100644 index 0000000..42ec063 --- /dev/null +++ b/registry/mcps/microsoft-learn/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "microsoft-learn", + "type": "mcp", + "name": "Microsoft Learn", + "tagline": "Connect Cline to Microsoft Learn", + "description": "Access official Microsoft documentation, API references, and code samples for Azure, .NET, Windows, and more.", + "author": { + "name": "Microsoft" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "microsoft-learn", + "--transport", + "http", + "https://learn.microsoft.com/api/mcp" + ], + "notes": "Imported from plugin bundle config `microsoft-docs/.mcp.json`." + }, + "homepage": "https://learn.microsoft.com", + "repo": "https://github.com/microsoftdocs/mcp", + "license": "MIT" +} diff --git a/registry/mcps/mintlify/entry.json b/registry/mcps/mintlify/entry.json new file mode 100644 index 0000000..db52498 --- /dev/null +++ b/registry/mcps/mintlify/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mintlify", + "type": "mcp", + "name": "Mintlify", + "tagline": "Connect Cline to Mintlify", + "description": "Connect Cline to Mintlify through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Mintlify" + }, + "tags": [ + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mintlify", + "--transport", + "http", + "https://mintlify.com/docs/mcp" + ], + "notes": "Imported from plugin bundle config `mintlify/.mcp.json`." + } +} diff --git a/registry/mcps/miro/entry.json b/registry/mcps/miro/entry.json new file mode 100644 index 0000000..be8cc5a --- /dev/null +++ b/registry/mcps/miro/entry.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "miro", + "type": "mcp", + "name": "Miro", + "tagline": "Connect Cline to Miro", + "description": "Secure access to Miro boards. Enables AI to read board context, create diagrams, and generate code with enterprise-grade security.", + "author": { + "name": "Miro" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "miro", + "--transport", + "http", + "https://mcp.miro.com/", + "--header", + "X-AI-Source: claude-code-plugin" + ], + "notes": "Imported from plugin bundle config `miro/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://miro.com", + "repo": "https://github.com/miroapp/miro-ai", + "license": "MIT" +} diff --git a/registry/mcps/mongodb/entry.json b/registry/mcps/mongodb/entry.json new file mode 100644 index 0000000..ff179cf --- /dev/null +++ b/registry/mcps/mongodb/entry.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "mongodb", + "type": "mcp", + "name": "MongoDB", + "tagline": "Connect Cline to MongoDB", + "description": "Connect Cline to MongoDB through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "MongoDB" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "mongodb", + "--", + "npx", + "-y", + "mongodb-mcp-server@<3" + ], + "notes": "Imported from plugin bundle config `mongodb/mcp.json`." + }, + "homepage": "https://www.mongodb.com/docs/codex/", + "repo": "https://github.com/mongodb/agent-skills", + "license": "Apache-2.0" +} diff --git a/registry/mcps/neon/entry.json b/registry/mcps/neon/entry.json new file mode 100644 index 0000000..1b0b15c --- /dev/null +++ b/registry/mcps/neon/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "neon", + "type": "mcp", + "name": "Neon", + "tagline": "Connect Cline to Neon", + "description": "Manage your Neon projects and databases with the neon-postgres agent skill and the Neon MCP Server", + "author": { + "name": "Neon" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "neon", + "--transport", + "http", + "https://mcp.neon.tech/mcp" + ], + "notes": "Imported from plugin bundle config `neon/mcp.json`." + }, + "homepage": "https://neon.com", + "repo": "https://github.com/neondatabase/agent-skills", + "license": "Apache-2.0" +} diff --git a/registry/mcps/nimble/entry.json b/registry/mcps/nimble/entry.json new file mode 100644 index 0000000..c82c548 --- /dev/null +++ b/registry/mcps/nimble/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "nimble", + "type": "mcp", + "name": "Nimble", + "tagline": "Connect Cline to Nimble", + "description": "Real-time web search and data extraction for AI agents - powered by Nimble. Search, extract, map, and crawl any site on the web with built-in stealth, JS rendering, and retries. Get clean, structured web data from any public webpage with pre-built Web Search Agents, or build your own reusable extraction templates. The definitive web data toolkit for AI-native development.", + "author": { + "name": "Nimble" + }, + "tags": [ + "data", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "nimble", + "--transport", + "http", + "https://mcp.nimbleway.com/mcp" + ], + "notes": "Imported from plugin bundle config `nimble/.mcp.json`." + }, + "homepage": "https://www.nimbleway.com", + "repo": "https://github.com/Nimbleway/agent-skills", + "license": "MIT" +} diff --git a/registry/mcps/notebook/entry.json b/registry/mcps/notebook/entry.json new file mode 100644 index 0000000..7a7f5de --- /dev/null +++ b/registry/mcps/notebook/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "notebook", + "type": "mcp", + "name": "Data Agent Kit Starter Pack", + "tagline": "Connect Cline to Data Agent Kit Starter Pack", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Data" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "notebook", + "--", + "npx", + "-y", + "git+https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack.git", + "--mode=notebook" + ], + "env": [ + { + "name": "DATA_CLOUD_CURR_IDE_NAME", + "required": true, + "description": "Data Agent Kit Starter Pack value for data cloud curr ide name." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/pagerduty/entry.json b/registry/mcps/pagerduty/entry.json new file mode 100644 index 0000000..7603495 --- /dev/null +++ b/registry/mcps/pagerduty/entry.json @@ -0,0 +1,35 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "pagerduty", + "type": "mcp", + "name": "PagerDuty", + "tagline": "Connect Cline to PagerDuty", + "description": "Connect Cline to PagerDuty through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "PagerDuty" + }, + "tags": [ + "software", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "pagerduty", + "--transport", + "http", + "https://mcp.pagerduty.com/mcp", + "--header", + "Authorization: Token token=${PAGERDUTY_API_KEY}" + ], + "env": [ + { + "name": "PAGERDUTY_API_KEY", + "required": true, + "description": "PagerDuty API key for the remote MCP server." + } + ], + "notes": "Imported from plugin bundle config `pagerduty/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + } +} diff --git a/registry/mcps/pinecone/entry.json b/registry/mcps/pinecone/entry.json new file mode 100644 index 0000000..429283d --- /dev/null +++ b/registry/mcps/pinecone/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "pinecone", + "type": "mcp", + "name": "Pinecone", + "tagline": "Connect Cline to Pinecone", + "description": "Connect Cline to Pinecone through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Pinecone" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "pinecone", + "--", + "npx", + "-y", + "@pinecone-database/mcp" + ], + "env": [ + { + "name": "PINECONE_API_KEY", + "required": true, + "description": "Pinecone value for pinecone api key." + } + ], + "notes": "Imported from plugin bundle config `pinecone/.mcp.json`." + } +} diff --git a/registry/mcps/planetscale/entry.json b/registry/mcps/planetscale/entry.json new file mode 100644 index 0000000..a18b3c3 --- /dev/null +++ b/registry/mcps/planetscale/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "planetscale", + "type": "mcp", + "name": "Planetscale", + "tagline": "Connect Cline to Planetscale", + "description": "An authenticated hosted MCP server that accesses your PlanetScale organizations, databases, branches, schema, and Insights data.", + "author": { + "name": "PlanetScale" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "planetscale", + "--transport", + "http", + "https://mcp.pscale.dev/mcp/planetscale" + ], + "notes": "Imported from plugin bundle config `planetscale/.mcp.json`." + } +} diff --git a/registry/mcps/playwright/entry.json b/registry/mcps/playwright/entry.json new file mode 100644 index 0000000..05ffbdb --- /dev/null +++ b/registry/mcps/playwright/entry.json @@ -0,0 +1,25 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "playwright", + "type": "mcp", + "name": "Playwright", + "tagline": "Connect Cline to Playwright", + "description": "Connect Cline to Playwright through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Microsoft" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "playwright", + "--", + "npx", + "@playwright/mcp@latest" + ], + "notes": "Imported from plugin bundle config `playwright/.mcp.json`." + } +} diff --git a/registry/mcps/postman/entry.json b/registry/mcps/postman/entry.json new file mode 100644 index 0000000..207d351 --- /dev/null +++ b/registry/mcps/postman/entry.json @@ -0,0 +1,35 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "postman", + "type": "mcp", + "name": "Postman", + "tagline": "Connect Cline to Postman", + "description": "Connect Cline to Postman through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Postman" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "postman", + "--transport", + "http", + "https://mcp.postman.com/mcp", + "--header", + "X-Source: claude-code-plugin", + "--header", + "X-Plugin-Version: 1.1.0", + "--header", + "User-Agent: postman-claude-code-plugin/1.1.0" + ], + "notes": "Imported from plugin bundle config `postman/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://learning.postman.com/docs/developer/postman-mcp-server/", + "repo": "https://github.com/Postman-Devrel/postman-claude-code-plugin", + "license": "Apache-2.0" +} diff --git a/registry/mcps/prisma-local/entry.json b/registry/mcps/prisma-local/entry.json new file mode 100644 index 0000000..24704a6 --- /dev/null +++ b/registry/mcps/prisma-local/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "prisma-local", + "type": "mcp", + "name": "Prisma Local", + "tagline": "Connect Cline to Prisma Local", + "description": "Prisma MCP integration for Postgres database management, schema migrations, SQL queries, and connection string management. Provision Prisma Postgres databases, run migrations, and interact with your data directly.", + "author": { + "name": "Prisma" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "prisma-local", + "--", + "npx", + "-y", + "prisma", + "mcp" + ], + "notes": "Imported from plugin bundle config `prisma/.mcp.json`." + } +} diff --git a/registry/mcps/prisma-remote/entry.json b/registry/mcps/prisma-remote/entry.json new file mode 100644 index 0000000..e1f4a20 --- /dev/null +++ b/registry/mcps/prisma-remote/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "prisma-remote", + "type": "mcp", + "name": "Prisma Remote", + "tagline": "Connect Cline to Prisma Remote", + "description": "Prisma MCP integration for Postgres database management, schema migrations, SQL queries, and connection string management. Provision Prisma Postgres databases, run migrations, and interact with your data directly.", + "author": { + "name": "Prisma" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "prisma-remote", + "--transport", + "http", + "https://mcp.prisma.io/mcp" + ], + "notes": "Imported from plugin bundle config `prisma/.mcp.json`." + } +} diff --git a/registry/mcps/qt-docs/entry.json b/registry/mcps/qt-docs/entry.json new file mode 100644 index 0000000..711b9bc --- /dev/null +++ b/registry/mcps/qt-docs/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "qt-docs", + "type": "mcp", + "name": "Qt Docs", + "tagline": "Connect Cline to Qt Docs", + "description": "Agentic engineering skills for Qt software development, including Qt C++/QML code review, QML coding, and Qt C++/QML code documentation. Bundles the hosted Qt Documentation MCP server for live Qt API lookups. These skills use AI and can make mistakes. Always double-check the output carefully.", + "author": { + "name": "Qt Group" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "qt-docs", + "--transport", + "http", + "https://qt-docs-mcp.qt.io/mcp" + ], + "notes": "Imported from plugin bundle config `qt-development-skills/.mcp.json`." + } +} diff --git a/registry/mcps/quarkus-agent/entry.json b/registry/mcps/quarkus-agent/entry.json new file mode 100644 index 0000000..90e1fd2 --- /dev/null +++ b/registry/mcps/quarkus-agent/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "quarkus-agent", + "type": "mcp", + "name": "Quarkus Agent", + "tagline": "Connect Cline to Quarkus Agent", + "description": "MCP server for AI coding agents to create, manage, and interact with Quarkus applications. Provides tools for project scaffolding, dev mode lifecycle, extension skills, Dev MCP proxy, and documentation search.", + "author": { + "name": "Quarkus" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "quarkus-agent", + "--", + "jbang", + "quarkus-agent-mcp@quarkusio" + ], + "notes": "Imported from plugin bundle config `quarkus-agent/.mcp.json`." + }, + "homepage": "https://github.com/quarkusio/quarkus-agent-mcp", + "repo": "https://github.com/quarkusio/quarkus-agent-mcp", + "license": "Apache-2.0" +} diff --git a/registry/mcps/railway/entry.json b/registry/mcps/railway/entry.json new file mode 100644 index 0000000..bbddb4b --- /dev/null +++ b/registry/mcps/railway/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "railway", + "type": "mcp", + "name": "Railway", + "tagline": "Connect Cline to Railway", + "description": "Connect Cline to Railway through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Railway" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "railway", + "--", + "railway", + "mcp" + ], + "notes": "Imported from plugin bundle config `railway/.mcp.json`. The `railway` CLI must be available on PATH before starting this MCP server." + }, + "homepage": "https://docs.railway.com/agents", + "repo": "https://github.com/railwayapp/railway-skills", + "license": "MIT" +} diff --git a/registry/mcps/resend/entry.json b/registry/mcps/resend/entry.json new file mode 100644 index 0000000..52d1f6e --- /dev/null +++ b/registry/mcps/resend/entry.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "resend", + "type": "mcp", + "name": "Resend", + "tagline": "Connect Cline to Resend", + "description": "Skills and MCP server for the Resend email platform \u2014 sending, receiving, templates, CLI, React Email, and deliverability best practices.", + "author": { + "name": "Resend" + }, + "tags": [ + "marketing" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "resend", + "--", + "npx", + "-y", + "resend-mcp" + ], + "env": [ + { + "name": "RESEND_API_KEY", + "required": true, + "description": "Resend value for resend api key." + } + ], + "notes": "Imported from plugin bundle config `resend/.mcp.json`." + }, + "homepage": "https://resend.com", + "repo": "https://github.com/resend/resend-skills", + "license": "MIT" +} diff --git a/registry/mcps/revenuecat/entry.json b/registry/mcps/revenuecat/entry.json new file mode 100644 index 0000000..123dd94 --- /dev/null +++ b/registry/mcps/revenuecat/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "revenuecat", + "type": "mcp", + "name": "RevenueCat", + "tagline": "Connect Cline to RevenueCat", + "description": "Configure your RevenueCat integration and access data from your RevenueCat projects.", + "author": { + "name": "RevenueCat" + }, + "tags": [ + "data", + "finance" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "revenuecat", + "--transport", + "http", + "https://mcp.revenuecat.ai/mcp" + ], + "notes": "Imported from plugin bundle config `revenuecat/.mcp.json`." + }, + "homepage": "https://www.revenuecat.com/docs/tools/mcp/overview", + "repo": "https://github.com/RevenueCat/ai-toolkit", + "license": "MIT" +} diff --git a/registry/mcps/rootly/entry.json b/registry/mcps/rootly/entry.json new file mode 100644 index 0000000..08d8e69 --- /dev/null +++ b/registry/mcps/rootly/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "rootly", + "type": "mcp", + "name": "Rootly", + "tagline": "Connect Cline to Rootly", + "description": "Full-lifecycle incident management from your IDE. Prevent incidents before deploy, respond in real-time, and learn from post-mortems -- powered by Rootly.", + "author": { + "name": "Rootly AI Labs" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "rootly", + "--transport", + "http", + "https://mcp.rootly.com/mcp" + ], + "notes": "Imported from plugin bundle config `rootly/.mcp.json`." + }, + "homepage": "https://rootly.com/integrations/claude", + "repo": "https://github.com/Rootly-AI-Labs/rootly-claude-plugin", + "license": "Apache-2.0" +} diff --git a/registry/mcps/sanity/entry.json b/registry/mcps/sanity/entry.json new file mode 100644 index 0000000..1098c9b --- /dev/null +++ b/registry/mcps/sanity/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "sanity", + "type": "mcp", + "name": "Sanity", + "tagline": "Connect Cline to Sanity", + "description": "Connect Cline to Sanity through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Sanity" + }, + "tags": [ + "software", + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "sanity", + "--transport", + "http", + "https://mcp.sanity.io" + ], + "notes": "Imported from plugin bundle config `sanity/.mcp.json`." + }, + "homepage": "https://github.com/sanity-io/agent-toolkit", + "repo": "https://github.com/sanity-io/agent-toolkit", + "license": "MIT" +} diff --git a/registry/mcps/sap-fiori/entry.json b/registry/mcps/sap-fiori/entry.json new file mode 100644 index 0000000..b94d12a --- /dev/null +++ b/registry/mcps/sap-fiori/entry.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "sap-fiori", + "type": "mcp", + "name": "SAP Fiori", + "tagline": "Connect Cline to SAP Fiori", + "description": "Connect Cline to SAP Fiori through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "SAP" + }, + "tags": [ + "software", + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "sap-fiori", + "--", + "npx", + "--yes", + "@sap-ux/fiori-mcp-server@latest", + "fiori-mcp" + ], + "notes": "Imported from plugin bundle config `sap-fiori-mcp-server/.mcp.json`." + }, + "homepage": "https://github.com/SAP/open-ux-tools/tree/main/packages/fiori-mcp-server", + "repo": "https://github.com/SAP/open-ux-tools", + "license": "Apache-2.0" +} diff --git a/registry/mcps/sap-mdk/entry.json b/registry/mcps/sap-mdk/entry.json new file mode 100644 index 0000000..73931c4 --- /dev/null +++ b/registry/mcps/sap-mdk/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "sap-mdk", + "type": "mcp", + "name": "SAP Mobile Development Kit", + "tagline": "Connect Cline to SAP Mobile Development Kit", + "description": "Model Context Protocol (MCP) server for AI-assisted development of MDK applications.", + "author": { + "name": "SAP" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "sap-mdk", + "--", + "npx", + "-y", + "@sap/mdk-mcp-server" + ], + "notes": "Imported from plugin bundle config `sap-mdk-server/.mcp.json`." + }, + "homepage": "https://help.sap.com/docs/MDK", + "repo": "https://github.com/SAP/mdk-mcp-server", + "license": "Apache-2.0" +} diff --git a/registry/mcps/semgrep/entry.json b/registry/mcps/semgrep/entry.json new file mode 100644 index 0000000..fcbd829 --- /dev/null +++ b/registry/mcps/semgrep/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "semgrep", + "type": "mcp", + "name": "Semgrep", + "tagline": "Connect Cline to Semgrep", + "description": "Scans agent-generated code for security vulnerabilities using Semgrep.", + "author": { + "name": "Semgrep" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "semgrep", + "--", + "semgrep", + "mcp" + ], + "notes": "Imported from plugin bundle config `semgrep/.mcp.json`. The `semgrep` CLI must be available on PATH before starting this MCP server." + } +} diff --git a/registry/mcps/serena/entry.json b/registry/mcps/serena/entry.json new file mode 100644 index 0000000..52932b7 --- /dev/null +++ b/registry/mcps/serena/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "serena", + "type": "mcp", + "name": "Serena", + "tagline": "Connect Cline to Serena", + "description": "Semantic code analysis MCP server providing intelligent code understanding, refactoring suggestions, and codebase navigation through language server protocol integration.", + "author": { + "name": "Oraios" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "serena", + "--", + "uvx", + "--from", + "git+https://github.com/oraios/serena", + "serena", + "start-mcp-server" + ], + "notes": "Imported from plugin bundle config `serena/.mcp.json`." + } +} diff --git a/registry/mcps/shopify-dev/entry.json b/registry/mcps/shopify-dev/entry.json new file mode 100644 index 0000000..87d3a90 --- /dev/null +++ b/registry/mcps/shopify-dev/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "shopify-dev", + "type": "mcp", + "name": "Shopify Dev", + "tagline": "Connect Cline to Shopify Dev", + "description": "Connect Cline to Shopify Dev through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Shopify" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "shopify-dev", + "--", + "npx", + "-y", + "@shopify/dev-mcp@latest" + ], + "notes": "Imported from plugin bundle config `shopify/.mcp.json`." + }, + "license": "MIT" +} diff --git a/registry/mcps/slack/entry.json b/registry/mcps/slack/entry.json new file mode 100644 index 0000000..39e9a94 --- /dev/null +++ b/registry/mcps/slack/entry.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "slack", + "type": "mcp", + "name": "Slack", + "tagline": "Connect Cline to Slack", + "description": "Slack integration for searching messages, sending communications, managing canvases, and more", + "author": { + "name": "Slack" + }, + "tags": [ + "marketing", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "slack", + "--transport", + "http", + "https://mcp.slack.com/mcp" + ], + "notes": "Imported from plugin bundle config `slack/.mcp.json`." + }, + "homepage": "https://github.com/slackapi/slack-mcp-cursor-plugin", + "license": "MIT" +} diff --git a/registry/mcps/sonarqube/entry.json b/registry/mcps/sonarqube/entry.json new file mode 100644 index 0000000..acc0359 --- /dev/null +++ b/registry/mcps/sonarqube/entry.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "sonarqube", + "type": "mcp", + "name": "SonarQube", + "tagline": "Connect Cline to SonarQube", + "description": "SonarQube is the AI code quality and security verification platform used by millions of developers to catch bugs, vulnerabilities, and leaked secrets. This plugin enforces those standards in the agent coding loop: 7,500+ distinct issue types, secrets scanning, agentic analysis, and quality gates across 40+ languages.", + "author": { + "name": "Sonar" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "sonarqube", + "--", + "sonar", + "run", + "mcp" + ], + "notes": "Imported from plugin bundle config `sonarqube/mcp.json`. The `sonar` CLI must be available on PATH before starting this MCP server." + }, + "homepage": "https://www.sonarsource.com", + "repo": "https://github.com/SonarSource/sonarqube-agent-plugins", + "license": "SSAL-1.0" +} diff --git a/registry/mcps/sonatype-guide/entry.json b/registry/mcps/sonatype-guide/entry.json new file mode 100644 index 0000000..694b437 --- /dev/null +++ b/registry/mcps/sonatype-guide/entry.json @@ -0,0 +1,37 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "sonatype-guide", + "type": "mcp", + "name": "Sonatype Guide", + "tagline": "Connect Cline to Sonatype Guide", + "description": "Sonatype Guide MCP server for software supply chain intelligence and dependency security analysis. Scan dependencies for vulnerabilities, get version recommendations, and check component quality metrics.", + "author": { + "name": "Sonatype" + }, + "tags": [ + "security", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "sonatype-guide", + "--transport", + "http", + "https://mcp.guide.sonatype.com/mcp", + "--header", + "Authorization: Bearer ${SONATYPE_GUIDE_TOKEN}" + ], + "env": [ + { + "name": "SONATYPE_GUIDE_TOKEN", + "required": true, + "description": "Sonatype Guide value for sonatype guide token." + } + ], + "notes": "Imported from plugin bundle config `sonatype-guide/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://guide.sonatype.com", + "repo": "https://github.com/sonatype/guide-claude-plugin" +} diff --git a/registry/mcps/terraform/entry.json b/registry/mcps/terraform/entry.json new file mode 100644 index 0000000..a7046d9 --- /dev/null +++ b/registry/mcps/terraform/entry.json @@ -0,0 +1,37 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "terraform", + "type": "mcp", + "name": "Terraform", + "tagline": "Connect Cline to Terraform", + "description": "The Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.", + "author": { + "name": "HashiCorp" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "terraform", + "--", + "docker", + "run", + "-i", + "--rm", + "-e", + "TFE_TOKEN=${TFE_TOKEN}", + "hashicorp/terraform-mcp-server:0.4.0" + ], + "env": [ + { + "name": "TFE_TOKEN", + "required": true, + "description": "Terraform value for tfe token." + } + ], + "notes": "Imported from plugin bundle config `terraform/.mcp.json`." + } +} diff --git a/registry/mcps/twilio-docs/entry.json b/registry/mcps/twilio-docs/entry.json new file mode 100644 index 0000000..abbd3b3 --- /dev/null +++ b/registry/mcps/twilio-docs/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "twilio-docs", + "type": "mcp", + "name": "Twilio Docs", + "tagline": "Connect Cline to Twilio Docs", + "description": "Twilio Skills provide procedural knowledge for AI coding agents \u2014 which APIs to use, in what order, and what to avoid. Covers Messaging, Voice, Verify, SendGrid, and 30+ products.", + "author": { + "name": "Twilio" + }, + "tags": [ + "software", + "research" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "twilio-docs", + "--transport", + "http", + "https://mcp.twilio.com/docs" + ], + "notes": "Imported from plugin bundle config `twilio-developer-kit/mcp.json`." + }, + "homepage": "https://www.twilio.com/docs", + "repo": "https://github.com/twilio/ai", + "license": "MIT" +} diff --git a/registry/mcps/ui5/entry.json b/registry/mcps/ui5/entry.json new file mode 100644 index 0000000..6717128 --- /dev/null +++ b/registry/mcps/ui5/entry.json @@ -0,0 +1,26 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "ui5", + "type": "mcp", + "name": "UI5", + "tagline": "Connect Cline to UI5", + "description": "Connect Cline to UI5 through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "SAP" + }, + "tags": [ + "creative" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "ui5", + "--", + "npx", + "-y", + "@ui5/mcp-server" + ], + "notes": "Imported from plugin bundle config `ui5/.mcp.json`." + } +} diff --git a/registry/mcps/valtown/entry.json b/registry/mcps/valtown/entry.json new file mode 100644 index 0000000..e7abc6f --- /dev/null +++ b/registry/mcps/valtown/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "valtown", + "type": "mcp", + "name": "Val Town", + "tagline": "Connect Cline to Val Town", + "description": "Build and deploy on Val Town. Bundles the Val Town MCP server and platform skills (HTTP vals, cron/intervals, SQLite, email, OAuth, React UI, third-party integrations, templates).", + "author": { + "name": "Val Town" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "valtown", + "--transport", + "http", + "https://api.val.town/v3/mcp" + ], + "notes": "Imported from plugin bundle config `valtown/.mcp.json`." + }, + "homepage": "https://val.town", + "repo": "https://github.com/val-town/plugins", + "license": "MIT" +} diff --git a/registry/mcps/vanta-aus/entry.json b/registry/mcps/vanta-aus/entry.json new file mode 100644 index 0000000..88ea9e2 --- /dev/null +++ b/registry/mcps/vanta-aus/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "vanta-aus", + "type": "mcp", + "name": "Vanta AUS", + "tagline": "Connect Cline to Vanta AUS", + "description": "Connect Cline to the Vanta AUS regional MCP server.", + "author": { + "name": "Vanta" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "vanta-aus", + "--transport", + "http", + "https://mcp.aus.vanta.com/mcp" + ], + "notes": "Imported from plugin bundle config `vanta/.mcp.json`." + }, + "homepage": "https://github.com/VantaInc/vanta-mcp-plugin", + "repo": "https://github.com/VantaInc/vanta-mcp-plugin", + "license": "MIT" +} diff --git a/registry/mcps/vanta-eu/entry.json b/registry/mcps/vanta-eu/entry.json new file mode 100644 index 0000000..7139371 --- /dev/null +++ b/registry/mcps/vanta-eu/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "vanta-eu", + "type": "mcp", + "name": "Vanta EU", + "tagline": "Connect Cline to Vanta EU", + "description": "Connect Cline to the Vanta EU regional MCP server.", + "author": { + "name": "Vanta" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "vanta-eu", + "--transport", + "http", + "https://mcp.eu.vanta.com/mcp" + ], + "notes": "Imported from plugin bundle config `vanta/.mcp.json`." + }, + "homepage": "https://github.com/VantaInc/vanta-mcp-plugin", + "repo": "https://github.com/VantaInc/vanta-mcp-plugin", + "license": "MIT" +} diff --git a/registry/mcps/vanta-us/entry.json b/registry/mcps/vanta-us/entry.json new file mode 100644 index 0000000..80da174 --- /dev/null +++ b/registry/mcps/vanta-us/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "vanta-us", + "type": "mcp", + "name": "Vanta US", + "tagline": "Connect Cline to Vanta US", + "description": "Connect Cline to the Vanta US regional MCP server.", + "author": { + "name": "Vanta" + }, + "tags": [ + "security", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "vanta-us", + "--transport", + "http", + "https://mcp.vanta.com/mcp" + ], + "notes": "Imported from plugin bundle config `vanta/.mcp.json`." + }, + "homepage": "https://github.com/VantaInc/vanta-mcp-plugin", + "repo": "https://github.com/VantaInc/vanta-mcp-plugin", + "license": "MIT" +} diff --git a/registry/mcps/vercel/entry.json b/registry/mcps/vercel/entry.json new file mode 100644 index 0000000..7f3b1e1 --- /dev/null +++ b/registry/mcps/vercel/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "vercel", + "type": "mcp", + "name": "Vercel", + "tagline": "Connect Cline to Vercel", + "description": "Build and deploy web apps and agents", + "author": { + "name": "Vercel" + }, + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "vercel", + "--transport", + "http", + "https://mcp.vercel.com" + ], + "notes": "Imported from plugin bundle config `vercel/.mcp.json`." + }, + "repo": "https://github.com/vercel/vercel-plugin", + "license": "Apache-2.0" +} diff --git a/registry/mcps/visualization/entry.json b/registry/mcps/visualization/entry.json new file mode 100644 index 0000000..bff7667 --- /dev/null +++ b/registry/mcps/visualization/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "visualization", + "type": "mcp", + "name": "Data Agent Kit Starter Pack", + "tagline": "Connect Cline to Data Agent Kit Starter Pack", + "description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.", + "author": { + "name": "Data" + }, + "tags": [ + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "visualization", + "--", + "npx", + "-y", + "git+https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack.git", + "--mode=visualization" + ], + "env": [ + { + "name": "DATA_CLOUD_CURR_IDE_NAME", + "required": true, + "description": "Data Agent Kit Starter Pack value for data cloud curr ide name." + } + ], + "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + } +} diff --git a/registry/mcps/windsor-ai/entry.json b/registry/mcps/windsor-ai/entry.json new file mode 100644 index 0000000..def88be --- /dev/null +++ b/registry/mcps/windsor-ai/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "windsor-ai", + "type": "mcp", + "name": "Windsor AI", + "tagline": "Connect Cline to Windsor AI", + "description": "Connect Cline to Windsor AI through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Windsor.ai" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "windsor-ai", + "--transport", + "http", + "https://mcp.windsor.ai" + ], + "notes": "Imported from plugin bundle config `windsor-ai/.mcp.json`." + }, + "homepage": "https://windsor.ai", + "repo": "https://github.com/windsor-ai/claude-windsor-ai-plugin", + "license": "MIT" +} diff --git a/registry/mcps/wix/entry.json b/registry/mcps/wix/entry.json new file mode 100644 index 0000000..c3c06a3 --- /dev/null +++ b/registry/mcps/wix/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "wix", + "type": "mcp", + "name": "Wix", + "tagline": "Connect Cline to Wix", + "description": "Build and deploy Wix apps and headless websites, and manage your Wix business. Includes CLI development skills, Wix Headless for any frontend framework, and Wix MCP server for eCommerce, CMS, dashboard extensions, and more.", + "author": { + "name": "Wix" + }, + "tags": [ + "software", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "wix", + "--transport", + "http", + "https://mcp.wix.com/mcp" + ], + "notes": "Imported from plugin bundle config `wix/.mcp.json`." + }, + "homepage": "https://dev.wix.com/docs/api-reference/articles/ai-tools/about-wix-skills", + "repo": "https://github.com/wix/skills", + "license": "MIT" +} diff --git a/registry/mcps/zoom-docs/entry.json b/registry/mcps/zoom-docs/entry.json new file mode 100644 index 0000000..4b0b28b --- /dev/null +++ b/registry/mcps/zoom-docs/entry.json @@ -0,0 +1,38 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "zoom-docs", + "type": "mcp", + "name": "Zoom Docs", + "tagline": "Connect Cline to Zoom Docs", + "description": "Connect Cline to Zoom Docs through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Zoom" + }, + "tags": [ + "research", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "zoom-docs", + "--transport", + "http", + "https://mcp.zoom.us/mcp/docs/streamable", + "--header", + "Authorization: Bearer ${ZOOM_DOCS_MCP_ACCESS_TOKEN}" + ], + "env": [ + { + "name": "ZOOM_DOCS_MCP_ACCESS_TOKEN", + "required": true, + "description": "Zoom Docs value for zoom docs mcp access token." + } + ], + "notes": "Imported from plugin bundle config `zoom-plugin/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://developers.zoom.us/", + "repo": "https://github.com/zoom/zoom-plugin", + "license": "MIT" +} diff --git a/registry/mcps/zoom-whiteboard/entry.json b/registry/mcps/zoom-whiteboard/entry.json new file mode 100644 index 0000000..a00ca6e --- /dev/null +++ b/registry/mcps/zoom-whiteboard/entry.json @@ -0,0 +1,37 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "zoom-whiteboard", + "type": "mcp", + "name": "Zoom Whiteboard", + "tagline": "Connect Cline to Zoom Whiteboard", + "description": "Connect Cline to Zoom Whiteboard through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "Zoom" + }, + "tags": [ + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "zoom-whiteboard", + "--transport", + "http", + "https://mcp.zoom.us/mcp/whiteboard/streamable", + "--header", + "Authorization: Bearer ${ZOOM_WHITEBOARD_MCP_ACCESS_TOKEN}" + ], + "env": [ + { + "name": "ZOOM_WHITEBOARD_MCP_ACCESS_TOKEN", + "required": true, + "description": "Zoom Whiteboard value for zoom whiteboard mcp access token." + } + ], + "notes": "Imported from plugin bundle config `zoom-plugin/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + }, + "homepage": "https://developers.zoom.us/", + "repo": "https://github.com/zoom/zoom-plugin", + "license": "MIT" +} diff --git a/registry/mcps/zoominfo/entry.json b/registry/mcps/zoominfo/entry.json new file mode 100644 index 0000000..6b70ba7 --- /dev/null +++ b/registry/mcps/zoominfo/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "zoominfo", + "type": "mcp", + "name": "ZoomInfo", + "tagline": "Connect Cline to ZoomInfo", + "description": "Connect Cline to ZoomInfo through this MCP server configuration from the imported plugin marketplace bundle.", + "author": { + "name": "ZoomInfo" + }, + "tags": [ + "data", + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "zoominfo", + "--transport", + "http", + "https://mcp.zoominfo.com/mcp" + ], + "notes": "Imported from plugin bundle config `zoominfo/.mcp.json`." + }, + "homepage": "https://www.zoominfo.com", + "repo": "https://github.com/Zoominfo/zoominfo-mcp-plugin", + "license": "MIT" +} diff --git a/registry/mcps/zscaler/entry.json b/registry/mcps/zscaler/entry.json new file mode 100644 index 0000000..4e72a40 --- /dev/null +++ b/registry/mcps/zscaler/entry.json @@ -0,0 +1,47 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "zscaler", + "type": "mcp", + "name": "Zscaler", + "tagline": "Connect Cline to Zscaler", + "description": "Manage Zscaler cloud security platform including ZPA (private access), ZIA (internet access), ZDX (digital experience), ZCC (client connector), EASM (attack surface), and Z-Insights (analytics). Create and manage policies, troubleshoot connectivity, audit security configurations, and investigate incidents across the full Zscaler ecosystem.", + "author": { + "name": "Zscaler" + }, + "tags": [ + "security", + "data" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "zscaler", + "--", + "zscaler-mcp-server" + ], + "env": [ + { + "name": "ZSCALER_CLIENT_ID", + "required": true, + "description": "Zscaler value for zscaler client id." + }, + { + "name": "ZSCALER_CLIENT_SECRET", + "required": true, + "description": "Zscaler value for zscaler client secret." + }, + { + "name": "ZSCALER_CUSTOMER_ID", + "required": true, + "description": "Zscaler value for zscaler customer id." + }, + { + "name": "ZSCALER_VANITY_DOMAIN", + "required": true, + "description": "Zscaler value for zscaler vanity domain." + } + ], + "notes": "Imported from plugin bundle config `zscaler/mcp.json`. The `zscaler-mcp-server` CLI must be available on PATH before starting this MCP server." + } +} From d4f2811746a8f116bd2510c8379f669b7c91950c Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 17 Jun 2026 18:02:16 -0700 Subject: [PATCH 3/5] feat: add manifest-only MCP entries --- registry/mcps/carta/entry.json | 29 ++++++++++++++++++ registry/mcps/chrome-devtools/entry.json | 27 +++++++++++++++++ registry/mcps/desktop-commander/entry.json | 30 +++++++++++++++++++ registry/mcps/lusha/entry.json | 34 ++++++++++++++++++++++ 4 files changed, 120 insertions(+) create mode 100644 registry/mcps/carta/entry.json create mode 100644 registry/mcps/chrome-devtools/entry.json create mode 100644 registry/mcps/desktop-commander/entry.json create mode 100644 registry/mcps/lusha/entry.json diff --git a/registry/mcps/carta/entry.json b/registry/mcps/carta/entry.json new file mode 100644 index 0000000..0206ee9 --- /dev/null +++ b/registry/mcps/carta/entry.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "carta", + "type": "mcp", + "name": "Carta", + "tagline": "Connect Cline to Carta", + "description": "Query Carta cap tables, investors data, CRM records, grants, valuations, and related equity workflows through the Carta MCP server.", + "author": { + "name": "Carta" + }, + "homepage": "https://github.com/carta/plugins", + "repo": "https://github.com/carta/plugins", + "tags": [ + "finance", + "business", + "sales" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "carta", + "--transport", + "http", + "https://mcp.app.carta.com/mcp" + ], + "notes": "Imported from plugin bundle configs `carta-cap-table/.claude-plugin/plugin.json`, `carta-crm/.claude-plugin/plugin.json`, and `carta-investors/.claude-plugin/plugin.json`." + } +} diff --git a/registry/mcps/chrome-devtools/entry.json b/registry/mcps/chrome-devtools/entry.json new file mode 100644 index 0000000..6618ff6 --- /dev/null +++ b/registry/mcps/chrome-devtools/entry.json @@ -0,0 +1,27 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "chrome-devtools", + "type": "mcp", + "name": "Chrome DevTools", + "tagline": "Connect Cline to Chrome DevTools", + "description": "Reliable browser automation, debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer.", + "author": { + "name": "Chrome DevTools" + }, + "homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp", + "repo": "https://github.com/ChromeDevTools/chrome-devtools-mcp", + "tags": [ + "software" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "chrome-devtools", + "--", + "npx", + "chrome-devtools-mcp@1.2.0" + ], + "notes": "Imported from plugin bundle config `chrome-devtools-mcp/.claude-plugin/plugin.json`." + } +} diff --git a/registry/mcps/desktop-commander/entry.json b/registry/mcps/desktop-commander/entry.json new file mode 100644 index 0000000..a507697 --- /dev/null +++ b/registry/mcps/desktop-commander/entry.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "desktop-commander", + "type": "mcp", + "name": "Desktop Commander", + "tagline": "Connect Cline to Desktop Commander", + "description": "Run terminal commands, manage processes, and work with files across text, code, PDF, DOCX, Excel, images, and structured data.", + "author": { + "name": "Desktop Commander" + }, + "homepage": "https://desktopcommander.app", + "repo": "https://github.com/wonderwhy-er/DesktopCommanderMCP", + "license": "MIT", + "tags": [ + "software", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "desktop-commander", + "--", + "npx", + "-y", + "@wonderwhy-er/desktop-commander@latest" + ], + "notes": "Imported from plugin bundle config `desktop-commander/.claude-plugin/plugin.json`." + } +} diff --git a/registry/mcps/lusha/entry.json b/registry/mcps/lusha/entry.json new file mode 100644 index 0000000..5f721af --- /dev/null +++ b/registry/mcps/lusha/entry.json @@ -0,0 +1,34 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "lusha", + "type": "mcp", + "name": "Lusha", + "tagline": "Connect Cline to Lusha", + "description": "Prospect, enrich, and build call-ready lead lists using Lusha's B2B intelligence platform.", + "author": { + "name": "Lusha", + "url": "https://www.lusha.com" + }, + "homepage": "https://www.lusha.com", + "repo": "https://github.com/lusha-oss/lusha-mcp-plugin", + "license": "MIT", + "tags": [ + "sales", + "business" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "lusha", + "--transport", + "http", + "https://mcp.lusha.com/mcp/claude", + "--header", + "X-Lusha-Plugin: claude", + "--header", + "X-Lusha-Plugin-Version: 0.1.0" + ], + "notes": "Imported from plugin bundle config `lusha/.claude-plugin/plugin.json`." + } +} From 44cd97092eccf2573144261523966ef4f6a4e7cf Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 17 Jun 2026 18:03:57 -0700 Subject: [PATCH 4/5] feat: add Box MCP entry --- registry/mcps/box/entry.json | 41 ++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 registry/mcps/box/entry.json diff --git a/registry/mcps/box/entry.json b/registry/mcps/box/entry.json new file mode 100644 index 0000000..04e3690 --- /dev/null +++ b/registry/mcps/box/entry.json @@ -0,0 +1,41 @@ +{ + "$schema": "../../../schemas/mcp.schema.json", + "id": "box", + "type": "mcp", + "name": "Box", + "tagline": "Connect Cline to Box", + "description": "Search, read, and manage Box content, build Box Platform integrations, and use Box AI for retrieval workflows.", + "author": { + "name": "Box" + }, + "homepage": "https://developer.box.com/", + "repo": "https://github.com/box/box-for-ai", + "license": "MIT", + "tags": [ + "research", + "productivity" + ], + "verified": false, + "featured": false, + "install": { + "args": [ + "box", + "--transport", + "http", + "https://mcp.box.com" + ], + "env": [ + { + "name": "CLIENT_ID", + "required": true, + "description": "Box app OAuth client ID." + }, + { + "name": "CLIENT_SECRET", + "required": true, + "description": "Box app OAuth client secret." + } + ], + "notes": "Imported from plugin bundle config snippet `box/.codex-plugin/README.md`." + } +} From 3a26c712bcdcc909e1f41f7da14c09f5f1fd295c Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Wed, 17 Jun 2026 19:11:48 -0700 Subject: [PATCH 5/5] fix: clean up MCP catalog notes --- registry/mcps/adobe-for-creativity/entry.json | 3 +-- registry/mcps/aikido/entry.json | 5 ++--- registry/mcps/airtable/entry.json | 3 +-- registry/mcps/amazon-s3/entry.json | 3 +-- registry/mcps/amplitude/entry.json | 5 ++--- registry/mcps/apify/entry.json | 3 +-- registry/mcps/apollo/entry.json | 5 ++--- registry/mcps/appwrite-api/entry.json | 5 ++--- registry/mcps/appwrite-docs/entry.json | 5 ++--- registry/mcps/asana/entry.json | 3 +-- registry/mcps/atlan/entry.json | 5 ++--- registry/mcps/atlassian-ads/entry.json | 3 +-- registry/mcps/atlassian/entry.json | 3 +-- registry/mcps/aurora-dsql/entry.json | 3 +-- registry/mcps/aws-mcp/entry.json | 3 +-- registry/mcps/aws-serverless-mcp/entry.json | 3 +-- registry/mcps/awsiac/entry.json | 3 +-- registry/mcps/awsknowledge/entry.json | 3 +-- registry/mcps/awspricing/entry.json | 3 +-- registry/mcps/azure/entry.json | 5 ++--- registry/mcps/bigdata-com/entry.json | 3 +-- registry/mcps/box/entry.json | 3 +-- registry/mcps/browserbase/entry.json | 3 +-- registry/mcps/buildkite/entry.json | 5 ++--- registry/mcps/carta/entry.json | 3 +-- registry/mcps/cds-mcp/entry.json | 3 +-- registry/mcps/chrome-devtools/entry.json | 3 +-- registry/mcps/circle/entry.json | 3 +-- registry/mcps/circleback/entry.json | 3 +-- registry/mcps/clickhouse/entry.json | 3 +-- registry/mcps/cloudflare-api/entry.json | 3 +-- registry/mcps/cloudflare-bindings/entry.json | 3 +-- registry/mcps/cloudflare-builds/entry.json | 3 +-- registry/mcps/cloudflare-docs/entry.json | 3 +-- registry/mcps/cloudflare-observability/entry.json | 3 +-- registry/mcps/cloudinary-analysis/entry.json | 5 ++--- registry/mcps/cloudinary-asset-mgmt/entry.json | 5 ++--- registry/mcps/cloudinary-env-config/entry.json | 5 ++--- registry/mcps/cloudinary-mediaflows/entry.json | 5 ++--- registry/mcps/cloudinary-smd/entry.json | 5 ++--- registry/mcps/cockroachdb-cloud/entry.json | 5 ++--- registry/mcps/codspeed/entry.json | 5 ++--- registry/mcps/confluence/entry.json | 3 +-- registry/mcps/convex/entry.json | 3 +-- .../mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json | 3 +-- registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json | 3 +-- registry/mcps/datacloud-bigquery-toolbox/entry.json | 3 +-- .../datacloud-cloud-sql-postgresql-admin-toolbox/entry.json | 3 +-- .../mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json | 3 +-- registry/mcps/datacloud-dataproc-toolbox/entry.json | 3 +-- registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json | 3 +-- registry/mcps/datacloud-serverless-spark-toolbox/entry.json | 3 +-- registry/mcps/datacloud-spanner-toolbox/entry.json | 3 +-- registry/mcps/desktop-commander/entry.json | 3 +-- registry/mcps/discourse/entry.json | 3 +-- registry/mcps/endor-cli-tools/entry.json | 3 +-- registry/mcps/exa/entry.json | 3 +-- registry/mcps/expo/entry.json | 3 +-- registry/mcps/fathom/entry.json | 3 +-- registry/mcps/fiftyone/entry.json | 2 +- registry/mcps/figma/entry.json | 3 +-- registry/mcps/firebase/entry.json | 3 +-- registry/mcps/firecrawl/entry.json | 3 +-- registry/mcps/firestore/entry.json | 3 +-- registry/mcps/forge/entry.json | 3 +-- registry/mcps/fullstory/entry.json | 5 ++--- registry/mcps/github/entry.json | 3 +-- registry/mcps/gitlab/entry.json | 3 +-- registry/mcps/google-bigquery/entry.json | 3 +-- registry/mcps/google-cloud-storage/entry.json | 3 +-- registry/mcps/google-looker/entry.json | 3 +-- registry/mcps/graphos-tools/entry.json | 3 +-- registry/mcps/greptile/entry.json | 5 ++--- registry/mcps/gumloop/entry.json | 3 +-- registry/mcps/huggingface-skills/entry.json | 3 +-- registry/mcps/hunter/entry.json | 3 +-- registry/mcps/intercom/entry.json | 5 ++--- registry/mcps/jira/entry.json | 3 +-- registry/mcps/laravel-boost/entry.json | 2 +- registry/mcps/launchdarkly/entry.json | 3 +-- registry/mcps/legalzoom/entry.json | 3 +-- registry/mcps/linear/entry.json | 3 +-- registry/mcps/logfire/entry.json | 3 +-- registry/mcps/lusha/entry.json | 3 +-- registry/mcps/mailgun/entry.json | 3 +-- registry/mcps/mapbox-devkit/entry.json | 3 +-- registry/mcps/mapbox-docs/entry.json | 3 +-- registry/mcps/mapbox/entry.json | 3 +-- registry/mcps/mercadopago/entry.json | 5 ++--- registry/mcps/microsoft-learn/entry.json | 3 +-- registry/mcps/mintlify/entry.json | 5 ++--- registry/mcps/miro/entry.json | 3 +-- registry/mcps/mongodb/entry.json | 5 ++--- registry/mcps/neon/entry.json | 3 +-- registry/mcps/nimble/entry.json | 3 +-- registry/mcps/notebook/entry.json | 3 +-- registry/mcps/notion/entry.json | 3 +-- registry/mcps/pagerduty/entry.json | 5 ++--- registry/mcps/paypal/entry.json | 3 +-- registry/mcps/perplexity/entry.json | 3 +-- registry/mcps/pinecone/entry.json | 5 ++--- registry/mcps/planetscale/entry.json | 3 +-- registry/mcps/playwright/entry.json | 5 ++--- registry/mcps/posthog/entry.json | 3 +-- registry/mcps/postman/entry.json | 5 ++--- registry/mcps/prisma-local/entry.json | 3 +-- registry/mcps/prisma-remote/entry.json | 3 +-- registry/mcps/qt-docs/entry.json | 3 +-- registry/mcps/quarkus-agent/entry.json | 3 +-- registry/mcps/railway/entry.json | 4 ++-- registry/mcps/ramp/entry.json | 3 +-- registry/mcps/resend/entry.json | 3 +-- registry/mcps/revenuecat/entry.json | 3 +-- registry/mcps/rootly/entry.json | 3 +-- registry/mcps/salesforce/entry.json | 3 +-- registry/mcps/sanity/entry.json | 5 ++--- registry/mcps/sap-fiori/entry.json | 5 ++--- registry/mcps/sap-mdk/entry.json | 3 +-- registry/mcps/semgrep/entry.json | 2 +- registry/mcps/sentry/entry.json | 3 +-- registry/mcps/serena/entry.json | 3 +-- registry/mcps/shopify-dev/entry.json | 5 ++--- registry/mcps/shopify/entry.json | 3 +-- registry/mcps/slack/entry.json | 3 +-- registry/mcps/sonarqube/entry.json | 2 +- registry/mcps/sonatype-guide/entry.json | 3 +-- registry/mcps/stripe/entry.json | 3 +-- registry/mcps/supabase/entry.json | 3 +-- registry/mcps/terraform/entry.json | 3 +-- registry/mcps/todoist/entry.json | 3 +-- registry/mcps/twilio-docs/entry.json | 3 +-- registry/mcps/twilio/entry.json | 3 +-- registry/mcps/ui5/entry.json | 5 ++--- registry/mcps/valtown/entry.json | 3 +-- registry/mcps/vanta-aus/entry.json | 3 +-- registry/mcps/vanta-eu/entry.json | 3 +-- registry/mcps/vanta-us/entry.json | 3 +-- registry/mcps/vercel/entry.json | 3 +-- registry/mcps/visualization/entry.json | 3 +-- registry/mcps/webflow/entry.json | 3 +-- registry/mcps/windsor-ai/entry.json | 5 ++--- registry/mcps/wix/entry.json | 3 +-- registry/mcps/zapier/entry.json | 3 +-- registry/mcps/zoom-docs/entry.json | 5 ++--- registry/mcps/zoom-whiteboard/entry.json | 5 ++--- registry/mcps/zoom/entry.json | 3 +-- registry/mcps/zoominfo/entry.json | 5 ++--- registry/mcps/zscaler/entry.json | 2 +- 148 files changed, 182 insertions(+), 324 deletions(-) diff --git a/registry/mcps/adobe-for-creativity/entry.json b/registry/mcps/adobe-for-creativity/entry.json index 2eba84d..f4096cf 100644 --- a/registry/mcps/adobe-for-creativity/entry.json +++ b/registry/mcps/adobe-for-creativity/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://adobe-creativity.adobe.io/mcp" - ], - "notes": "Imported from plugin bundle config `adobe-for-creativity/.mcp.json`." + ] }, "repo": "https://github.com/adobe/skills", "license": "Apache-2.0" diff --git a/registry/mcps/aikido/entry.json b/registry/mcps/aikido/entry.json index a0a662f..25ed4bf 100644 --- a/registry/mcps/aikido/entry.json +++ b/registry/mcps/aikido/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Aikido", "tagline": "Connect Cline to Aikido", - "description": "Connect Cline to Aikido through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Aikido through this MCP server.", "author": { "name": "Aikido Security" }, @@ -21,8 +21,7 @@ "npx", "-y", "@aikidosec/mcp@1.0.9" - ], - "notes": "Imported from plugin bundle config `aikido/.mcp.json`." + ] }, "homepage": "https://help.aikido.dev/ide-plugins/aikido-mcp", "repo": "https://github.com/AikidoSec/aikido-claude-plugin", diff --git a/registry/mcps/airtable/entry.json b/registry/mcps/airtable/entry.json index aa13288..3ed61ec 100644 --- a/registry/mcps/airtable/entry.json +++ b/registry/mcps/airtable/entry.json @@ -28,8 +28,7 @@ "description": "Airtable personal access token used by local Airtable MCP configuration.", "url": "https://airtable.com/create/tokens" } - ], - "notes": "Transport from source catalog: HTTPS remote MCP. Auth from source catalog: Airtable personal access token. Official Airtable GitHub repo; README says endpoint defaults to https://mcp.airtable.com/mcp." + ] }, "homepage": "https://github.com/Airtable/airtable-mcp-cli", "repo": "https://github.com/Airtable/airtable-mcp-cli" diff --git a/registry/mcps/amazon-s3/entry.json b/registry/mcps/amazon-s3/entry.json index 5c38800..5f71b41 100644 --- a/registry/mcps/amazon-s3/entry.json +++ b/registry/mcps/amazon-s3/entry.json @@ -36,8 +36,7 @@ "required": true, "description": "AWS region for the target S3 resources." } - ], - "notes": "Transport from source catalog: stdio via uvx/docker; remote AWS Knowledge MCP also listed. Auth from source catalog: AWS credentials/IAM; server-specific env vars. Official AWS Labs MCP repository includes AWS API MCP for all AWS services and AWS S3 Tables MCP Server for S3 Tables." + ] }, "homepage": "https://github.com/awslabs/mcp", "repo": "https://github.com/awslabs/mcp" diff --git a/registry/mcps/amplitude/entry.json b/registry/mcps/amplitude/entry.json index 41dc5e6..a0dddf3 100644 --- a/registry/mcps/amplitude/entry.json +++ b/registry/mcps/amplitude/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Amplitude", "tagline": "Connect Cline to Amplitude", - "description": "Connect Cline to Amplitude through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Amplitude through this MCP server.", "author": { "name": "Amplitude" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.amplitude.com/mcp" - ], - "notes": "Imported from plugin bundle config `amplitude/.mcp.json`." + ] }, "homepage": "https://github.com/amplitude/mcp-marketplace", "repo": "https://github.com/amplitude/mcp-marketplace", diff --git a/registry/mcps/apify/entry.json b/registry/mcps/apify/entry.json index b9f2ba2..177fcca 100644 --- a/registry/mcps/apify/entry.json +++ b/registry/mcps/apify/entry.json @@ -28,8 +28,7 @@ "description": "Apify API token for local server usage.", "url": "https://console.apify.com/account/integrations" } - ], - "notes": "Transport from source catalog: Streamable HTTP; local stdio. Auth from source catalog: OAuth or Apify API token; x402/Skyfire payment options. Official Apify repo and hosted server; legacy SSE removed in favor of streamable HTTP." + ] }, "homepage": "https://github.com/apify/apify-mcp-server", "repo": "https://github.com/apify/apify-mcp-server" diff --git a/registry/mcps/apollo/entry.json b/registry/mcps/apollo/entry.json index b004a34..bd2ad2b 100644 --- a/registry/mcps/apollo/entry.json +++ b/registry/mcps/apollo/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Apollo", "tagline": "Connect Cline to Apollo", - "description": "Connect Cline to Apollo through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Apollo through this MCP server.", "author": { "name": "Apollo.io" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.apollo.io/mcp" - ], - "notes": "Imported from plugin bundle config `apollo/.mcp.json`." + ] }, "homepage": "https://www.apollo.io/", "repo": "https://github.com/apolloio/apollo-mcp-plugin", diff --git a/registry/mcps/appwrite-api/entry.json b/registry/mcps/appwrite-api/entry.json index 22d9720..f44f3c4 100644 --- a/registry/mcps/appwrite-api/entry.json +++ b/registry/mcps/appwrite-api/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Appwrite API", "tagline": "Connect Cline to Appwrite API", - "description": "Connect Cline to Appwrite API through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Appwrite API through this MCP server.", "author": { "name": "Appwrite" }, @@ -36,8 +36,7 @@ "required": true, "description": "Appwrite API value for appwrite api key." } - ], - "notes": "Imported from plugin bundle config `appwrite/.mcp.json`." + ] }, "homepage": "https://appwrite.io/docs/tooling/ai/ai-dev-tools/claude-code", "repo": "https://github.com/appwrite/claude-plugin", diff --git a/registry/mcps/appwrite-docs/entry.json b/registry/mcps/appwrite-docs/entry.json index ff46b12..381f143 100644 --- a/registry/mcps/appwrite-docs/entry.json +++ b/registry/mcps/appwrite-docs/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Appwrite Docs", "tagline": "Connect Cline to Appwrite Docs", - "description": "Connect Cline to Appwrite Docs through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Appwrite Docs through this MCP server.", "author": { "name": "Appwrite" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp-for-docs.appwrite.io" - ], - "notes": "Imported from plugin bundle config `appwrite/.mcp.json`." + ] }, "homepage": "https://appwrite.io/docs/tooling/ai/ai-dev-tools/claude-code", "repo": "https://github.com/appwrite/claude-plugin", diff --git a/registry/mcps/asana/entry.json b/registry/mcps/asana/entry.json index 866ffb0..da25101 100644 --- a/registry/mcps/asana/entry.json +++ b/registry/mcps/asana/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.asana.com/v2/mcp" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth with Asana account; client ID/secret may be needed for some clients. Official Asana developer docs; beta SSE endpoint https://mcp.asana.com/sse is deprecated/shutting down 2026-05-11." + ] }, "homepage": "https://developers.asana.com/docs/using-asanas-mcp-server" } diff --git a/registry/mcps/atlan/entry.json b/registry/mcps/atlan/entry.json index e54d1d0..463458c 100644 --- a/registry/mcps/atlan/entry.json +++ b/registry/mcps/atlan/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Atlan", "tagline": "Connect Cline to Atlan", - "description": "Connect Cline to Atlan through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Atlan through this MCP server.", "author": { "name": "Atlan" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.atlan.com/mcp" - ], - "notes": "Imported from plugin bundle config `atlan/.mcp.json`." + ] }, "homepage": "https://atlan.com/docs", "repo": "https://github.com/atlanhq/agent-toolkit", diff --git a/registry/mcps/atlassian-ads/entry.json b/registry/mcps/atlassian-ads/entry.json index 6bd0491..f4f998d 100644 --- a/registry/mcps/atlassian-ads/entry.json +++ b/registry/mcps/atlassian-ads/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://mcp.atlassian.com/v1/ads/public/mcp" - ], - "notes": "Imported from plugin bundle config `forge-skills/.mcp.json`." + ] } } diff --git a/registry/mcps/atlassian/entry.json b/registry/mcps/atlassian/entry.json index a7a738e..f1e3043 100644 --- a/registry/mcps/atlassian/entry.json +++ b/registry/mcps/atlassian/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://mcp.atlassian.com/v1/mcp/authv2" - ], - "notes": "Imported from plugin bundle config `atlassian/.mcp.json`." + ] } } diff --git a/registry/mcps/aurora-dsql/entry.json b/registry/mcps/aurora-dsql/entry.json index 5d45525..a0fbdb4 100644 --- a/registry/mcps/aurora-dsql/entry.json +++ b/registry/mcps/aurora-dsql/entry.json @@ -27,8 +27,7 @@ "required": true, "description": "Aurora DSQL value for fastmcp log level." } - ], - "notes": "Imported from plugin bundle config `databases-on-aws/.mcp.json`." + ] }, "homepage": "https://github.com/awslabs/agent-plugins", "repo": "https://github.com/awslabs/agent-plugins", diff --git a/registry/mcps/aws-mcp/entry.json b/registry/mcps/aws-mcp/entry.json index 209d1c5..caee831 100644 --- a/registry/mcps/aws-mcp/entry.json +++ b/registry/mcps/aws-mcp/entry.json @@ -24,8 +24,7 @@ "--skip-auth", "--metadata", "INSTALL_SOURCE=agent-toolkit" - ], - "notes": "Imported from plugin bundle config `aws-data-analytics/.mcp.json`." + ] }, "homepage": "https://aws.amazon.com/products/developer-tools/agent-toolkit-for-aws/", "repo": "https://github.com/aws/agent-toolkit-for-aws", diff --git a/registry/mcps/aws-serverless-mcp/entry.json b/registry/mcps/aws-serverless-mcp/entry.json index e0450e9..764bf1f 100644 --- a/registry/mcps/aws-serverless-mcp/entry.json +++ b/registry/mcps/aws-serverless-mcp/entry.json @@ -27,8 +27,7 @@ "required": true, "description": "AWS Serverless value for fastmcp log level." } - ], - "notes": "Imported from plugin bundle config `aws-serverless/.mcp.json`." + ] }, "homepage": "https://github.com/awslabs/agent-plugins", "repo": "https://github.com/awslabs/agent-plugins", diff --git a/registry/mcps/awsiac/entry.json b/registry/mcps/awsiac/entry.json index 5996981..bde637a 100644 --- a/registry/mcps/awsiac/entry.json +++ b/registry/mcps/awsiac/entry.json @@ -26,8 +26,7 @@ "required": true, "description": "AWS IaC value for fastmcp log level." } - ], - "notes": "Imported from plugin bundle config `aws-dev-toolkit/.mcp.json`." + ] }, "homepage": "https://github.com/aws-samples/sample-claude-code-plugins-for-startups/tree/main/plugins/aws-dev-toolkit", "repo": "https://github.com/aws-samples/sample-claude-code-plugins-for-startups", diff --git a/registry/mcps/awsknowledge/entry.json b/registry/mcps/awsknowledge/entry.json index 1032ce1..1c8a00f 100644 --- a/registry/mcps/awsknowledge/entry.json +++ b/registry/mcps/awsknowledge/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://knowledge-mcp.global.api.aws" - ], - "notes": "Imported from plugin bundle config `migration-to-aws/.mcp.json`." + ] }, "homepage": "https://github.com/awslabs/startups/tree/main/migrate", "repo": "https://github.com/awslabs/startups", diff --git a/registry/mcps/awspricing/entry.json b/registry/mcps/awspricing/entry.json index 0a83e9c..370130f 100644 --- a/registry/mcps/awspricing/entry.json +++ b/registry/mcps/awspricing/entry.json @@ -32,8 +32,7 @@ "required": true, "description": "AWS Pricing value for aws region." } - ], - "notes": "Imported from plugin bundle config `migration-to-aws/.mcp.json`." + ] }, "homepage": "https://github.com/awslabs/startups/tree/main/migrate", "repo": "https://github.com/awslabs/startups", diff --git a/registry/mcps/azure/entry.json b/registry/mcps/azure/entry.json index 2a12ca0..225fdf5 100644 --- a/registry/mcps/azure/entry.json +++ b/registry/mcps/azure/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Azure", "tagline": "Connect Cline to Azure", - "description": "Connect Cline to Azure through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Azure through this MCP server.", "author": { "name": "Microsoft" }, @@ -22,8 +22,7 @@ "@azure/mcp@latest", "server", "start" - ], - "notes": "Imported from plugin bundle config `azure/.mcp.json`." + ] }, "homepage": "https://github.com/microsoft/azure-skills", "repo": "https://github.com/microsoft/azure-skills", diff --git a/registry/mcps/bigdata-com/entry.json b/registry/mcps/bigdata-com/entry.json index 7d9b3a8..643baef 100644 --- a/registry/mcps/bigdata-com/entry.json +++ b/registry/mcps/bigdata-com/entry.json @@ -20,7 +20,6 @@ "--transport", "http", "https://mcp.bigdata.com" - ], - "notes": "Imported from plugin bundle config `bigdata-com/.mcp.json`." + ] } } diff --git a/registry/mcps/box/entry.json b/registry/mcps/box/entry.json index 04e3690..1eccf57 100644 --- a/registry/mcps/box/entry.json +++ b/registry/mcps/box/entry.json @@ -35,7 +35,6 @@ "required": true, "description": "Box app OAuth client secret." } - ], - "notes": "Imported from plugin bundle config snippet `box/.codex-plugin/README.md`." + ] } } diff --git a/registry/mcps/browserbase/entry.json b/registry/mcps/browserbase/entry.json index 2569248..4945480 100644 --- a/registry/mcps/browserbase/entry.json +++ b/registry/mcps/browserbase/entry.json @@ -33,8 +33,7 @@ "description": "Browserbase project ID for local stdio usage.", "url": "https://www.browserbase.com/settings" } - ], - "notes": "Transport from source catalog: Streamable HTTP; local stdio via npx. Auth from source catalog: Browserbase API key and project ID for local; hosted auth via remote endpoint. Official Browserbase GitHub repo; remote config uses https://mcp.browserbase.com/mcp." + ] }, "homepage": "https://github.com/browserbase/mcp-server-browserbase", "repo": "https://github.com/browserbase/mcp-server-browserbase" diff --git a/registry/mcps/buildkite/entry.json b/registry/mcps/buildkite/entry.json index a66f80f..aa6fcbf 100644 --- a/registry/mcps/buildkite/entry.json +++ b/registry/mcps/buildkite/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Buildkite", "tagline": "Connect Cline to Buildkite", - "description": "Connect Cline to Buildkite through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Buildkite through this MCP server.", "author": { "name": "Buildkite" }, @@ -19,7 +19,6 @@ "--transport", "http", "https://mcp.buildkite.com/mcp" - ], - "notes": "Imported from plugin bundle config `buildkite/mcp.json`." + ] } } diff --git a/registry/mcps/carta/entry.json b/registry/mcps/carta/entry.json index 0206ee9..86fcc74 100644 --- a/registry/mcps/carta/entry.json +++ b/registry/mcps/carta/entry.json @@ -23,7 +23,6 @@ "--transport", "http", "https://mcp.app.carta.com/mcp" - ], - "notes": "Imported from plugin bundle configs `carta-cap-table/.claude-plugin/plugin.json`, `carta-crm/.claude-plugin/plugin.json`, and `carta-investors/.claude-plugin/plugin.json`." + ] } } diff --git a/registry/mcps/cds-mcp/entry.json b/registry/mcps/cds-mcp/entry.json index 7bdae62..b1b8404 100644 --- a/registry/mcps/cds-mcp/entry.json +++ b/registry/mcps/cds-mcp/entry.json @@ -20,8 +20,7 @@ "npx", "-y", "@cap-js/mcp-server" - ], - "notes": "Imported from plugin bundle config `cds-mcp/.mcp.json`." + ] }, "homepage": "https://cap.cloud.sap/", "repo": "https://github.com/cap-js/mcp-server", diff --git a/registry/mcps/chrome-devtools/entry.json b/registry/mcps/chrome-devtools/entry.json index 6618ff6..d747a76 100644 --- a/registry/mcps/chrome-devtools/entry.json +++ b/registry/mcps/chrome-devtools/entry.json @@ -21,7 +21,6 @@ "--", "npx", "chrome-devtools-mcp@1.2.0" - ], - "notes": "Imported from plugin bundle config `chrome-devtools-mcp/.claude-plugin/plugin.json`." + ] } } diff --git a/registry/mcps/circle/entry.json b/registry/mcps/circle/entry.json index cbd0427..a2e81df 100644 --- a/registry/mcps/circle/entry.json +++ b/registry/mcps/circle/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://api.circle.com/v1/codegen/mcp" - ], - "notes": "Imported from plugin bundle config `circle-skills/.mcp.json`." + ] }, "homepage": "https://developers.circle.com", "repo": "https://github.com/circlefin/skills", diff --git a/registry/mcps/circleback/entry.json b/registry/mcps/circleback/entry.json index 91ae2b4..1592b14 100644 --- a/registry/mcps/circleback/entry.json +++ b/registry/mcps/circleback/entry.json @@ -20,7 +20,6 @@ "--transport", "http", "https://app.circleback.ai/api/mcp" - ], - "notes": "Imported from plugin bundle config `circleback/.mcp.json`." + ] } } diff --git a/registry/mcps/clickhouse/entry.json b/registry/mcps/clickhouse/entry.json index 827ab64..7ada9ba 100644 --- a/registry/mcps/clickhouse/entry.json +++ b/registry/mcps/clickhouse/entry.json @@ -32,8 +32,7 @@ "required": true, "description": "Bearer token required when exposing ClickHouse MCP over HTTP or SSE." } - ], - "notes": "Transport from source catalog: stdio by default; HTTP/SSE supported. Auth from source catalog: ClickHouse credentials; HTTP/SSE requires bearer token/OAuth unless disabled locally. Official ClickHouse GitHub repo; connects to ClickHouse cluster and supports chDB." + ] }, "homepage": "https://github.com/ClickHouse/mcp-clickhouse", "repo": "https://github.com/ClickHouse/mcp-clickhouse" diff --git a/registry/mcps/cloudflare-api/entry.json b/registry/mcps/cloudflare-api/entry.json index 92bdf9a..754b28b 100644 --- a/registry/mcps/cloudflare-api/entry.json +++ b/registry/mcps/cloudflare-api/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://mcp.cloudflare.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + ] } } diff --git a/registry/mcps/cloudflare-bindings/entry.json b/registry/mcps/cloudflare-bindings/entry.json index 4df98b5..5889ceb 100644 --- a/registry/mcps/cloudflare-bindings/entry.json +++ b/registry/mcps/cloudflare-bindings/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://bindings.mcp.cloudflare.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + ] } } diff --git a/registry/mcps/cloudflare-builds/entry.json b/registry/mcps/cloudflare-builds/entry.json index 619d896..adcf782 100644 --- a/registry/mcps/cloudflare-builds/entry.json +++ b/registry/mcps/cloudflare-builds/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://builds.mcp.cloudflare.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + ] } } diff --git a/registry/mcps/cloudflare-docs/entry.json b/registry/mcps/cloudflare-docs/entry.json index dc5464d..4fc06e6 100644 --- a/registry/mcps/cloudflare-docs/entry.json +++ b/registry/mcps/cloudflare-docs/entry.json @@ -20,7 +20,6 @@ "--transport", "http", "https://docs.mcp.cloudflare.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + ] } } diff --git a/registry/mcps/cloudflare-observability/entry.json b/registry/mcps/cloudflare-observability/entry.json index e13b0df..e42f5eb 100644 --- a/registry/mcps/cloudflare-observability/entry.json +++ b/registry/mcps/cloudflare-observability/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://observability.mcp.cloudflare.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudflare/.mcp.json`." + ] } } diff --git a/registry/mcps/cloudinary-analysis/entry.json b/registry/mcps/cloudinary-analysis/entry.json index 5819778..250ede8 100644 --- a/registry/mcps/cloudinary-analysis/entry.json +++ b/registry/mcps/cloudinary-analysis/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Cloudinary Analysis", "tagline": "Connect Cline to Cloudinary Analysis", - "description": "Connect Cline to Cloudinary Analysis through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Cloudinary Analysis through this MCP server.", "author": { "name": "Cloudinary" }, @@ -19,8 +19,7 @@ "--transport", "sse", "https://analysis.mcp.cloudinary.com/sse" - ], - "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + ] }, "homepage": "https://cloudinary.com", "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", diff --git a/registry/mcps/cloudinary-asset-mgmt/entry.json b/registry/mcps/cloudinary-asset-mgmt/entry.json index 3086c2f..1810312 100644 --- a/registry/mcps/cloudinary-asset-mgmt/entry.json +++ b/registry/mcps/cloudinary-asset-mgmt/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Cloudinary Asset Mgmt", "tagline": "Connect Cline to Cloudinary Asset Mgmt", - "description": "Connect Cline to Cloudinary Asset Mgmt through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Cloudinary Asset Mgmt through this MCP server.", "author": { "name": "Cloudinary" }, @@ -19,8 +19,7 @@ "--transport", "http", "https://asset-management.mcp.cloudinary.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + ] }, "homepage": "https://cloudinary.com", "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", diff --git a/registry/mcps/cloudinary-env-config/entry.json b/registry/mcps/cloudinary-env-config/entry.json index 7ae534c..39e6fb6 100644 --- a/registry/mcps/cloudinary-env-config/entry.json +++ b/registry/mcps/cloudinary-env-config/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Cloudinary Env Config", "tagline": "Connect Cline to Cloudinary Env Config", - "description": "Connect Cline to Cloudinary Env Config through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Cloudinary Env Config through this MCP server.", "author": { "name": "Cloudinary" }, @@ -19,8 +19,7 @@ "--transport", "http", "https://environment-config.mcp.cloudinary.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + ] }, "homepage": "https://cloudinary.com", "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", diff --git a/registry/mcps/cloudinary-mediaflows/entry.json b/registry/mcps/cloudinary-mediaflows/entry.json index dbde2b4..97ec5cc 100644 --- a/registry/mcps/cloudinary-mediaflows/entry.json +++ b/registry/mcps/cloudinary-mediaflows/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Cloudinary Mediaflows", "tagline": "Connect Cline to Cloudinary Mediaflows", - "description": "Connect Cline to Cloudinary Mediaflows through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Cloudinary Mediaflows through this MCP server.", "author": { "name": "Cloudinary" }, @@ -25,8 +25,7 @@ "cld-api-key: api_key", "--header", "cld-secret: api_secret" - ], - "notes": "Imported from plugin bundle config `cloudinary/mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://cloudinary.com", "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", diff --git a/registry/mcps/cloudinary-smd/entry.json b/registry/mcps/cloudinary-smd/entry.json index 74aa115..b300218 100644 --- a/registry/mcps/cloudinary-smd/entry.json +++ b/registry/mcps/cloudinary-smd/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Cloudinary Structured Metadata", "tagline": "Connect Cline to Cloudinary Structured Metadata", - "description": "Connect Cline to Cloudinary Structured Metadata through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Cloudinary Structured Metadata through this MCP server.", "author": { "name": "Cloudinary" }, @@ -19,8 +19,7 @@ "--transport", "http", "https://structured-metadata.mcp.cloudinary.com/mcp" - ], - "notes": "Imported from plugin bundle config `cloudinary/mcp.json`." + ] }, "homepage": "https://cloudinary.com", "repo": "https://github.com/cloudinary-devs/cloudinary-plugin", diff --git a/registry/mcps/cockroachdb-cloud/entry.json b/registry/mcps/cockroachdb-cloud/entry.json index 3502c6f..0370e75 100644 --- a/registry/mcps/cockroachdb-cloud/entry.json +++ b/registry/mcps/cockroachdb-cloud/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Cockroachdb Cloud", "tagline": "Connect Cline to Cockroachdb Cloud", - "description": "Connect Cline to Cockroachdb Cloud through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Cockroachdb Cloud through this MCP server.", "author": { "name": "Cockroach Labs" }, @@ -29,8 +29,7 @@ "required": true, "description": "Cockroachdb Cloud value for cockroachdb cluster id." } - ], - "notes": "Imported from plugin bundle config `cockroachdb/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://github.com/cockroachdb/claude-plugin", "repo": "https://github.com/cockroachdb/claude-plugin", diff --git a/registry/mcps/codspeed/entry.json b/registry/mcps/codspeed/entry.json index 82c8183..6ee22de 100644 --- a/registry/mcps/codspeed/entry.json +++ b/registry/mcps/codspeed/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Codspeed", "tagline": "Connect Cline to Codspeed", - "description": "Connect Cline to Codspeed through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Codspeed through this MCP server.", "author": { "name": "CodSpeed" }, @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.codspeed.io/mcp" - ], - "notes": "Imported from plugin bundle config `codspeed/.mcp.json`." + ] }, "homepage": "https://codspeed.io", "repo": "https://github.com/CodSpeedHQ/codspeed", diff --git a/registry/mcps/confluence/entry.json b/registry/mcps/confluence/entry.json index 44f60fa..767d84d 100644 --- a/registry/mcps/confluence/entry.json +++ b/registry/mcps/confluence/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.atlassian.com/v1/mcp/authv2" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth 2.1; optional API token. Atlassian Rovo MCP supports Jira, Confluence, and Compass; old SSE endpoint deprecated after 2026-06-30." + ] }, "homepage": "https://support.atlassian.com/atlassian-rovo-mcp-server/docs/getting-started-with-the-atlassian-remote-mcp-server/" } diff --git a/registry/mcps/convex/entry.json b/registry/mcps/convex/entry.json index 6d30a28..b28ba76 100644 --- a/registry/mcps/convex/entry.json +++ b/registry/mcps/convex/entry.json @@ -23,8 +23,7 @@ "convex@latest", "mcp", "start" - ], - "notes": "Imported from plugin bundle config `convex/.mcp.json`." + ] }, "homepage": "https://github.com/get-convex/convex-backend-skill", "repo": "https://github.com/get-convex/convex-backend-skill", diff --git a/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json b/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json index b77dad3..9e3c7c1 100644 --- a/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json +++ b/registry/mcps/datacloud-alloydb-postgres-admin-toolbox/entry.json @@ -25,7 +25,6 @@ "--stdio", "--user-agent-metadata", "datacloud.codex" - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json b/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json index 3e727e3..30e1d43 100644 --- a/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json +++ b/registry/mcps/datacloud-alloydb-postgres-toolbox/entry.json @@ -67,7 +67,6 @@ "required": true, "description": "AlloyDB PostgreSQL Toolbox value for alloydb postgres user." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-bigquery-toolbox/entry.json b/registry/mcps/datacloud-bigquery-toolbox/entry.json index b62dece..64c2079 100644 --- a/registry/mcps/datacloud-bigquery-toolbox/entry.json +++ b/registry/mcps/datacloud-bigquery-toolbox/entry.json @@ -37,7 +37,6 @@ "required": true, "description": "BigQuery Toolbox value for bigquery project." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json b/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json index 66f5954..4575ad7 100644 --- a/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json +++ b/registry/mcps/datacloud-cloud-sql-postgresql-admin-toolbox/entry.json @@ -25,7 +25,6 @@ "--stdio", "--user-agent-metadata", "datacloud.codex" - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json b/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json index 73d001e..57dbd3e 100644 --- a/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json +++ b/registry/mcps/datacloud-cloud-sql-postgresql-toolbox/entry.json @@ -62,7 +62,6 @@ "required": true, "description": "Data Agent Kit Starter Pack value for cloud sql postgres user." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-dataproc-toolbox/entry.json b/registry/mcps/datacloud-dataproc-toolbox/entry.json index 240cc59..3d6984a 100644 --- a/registry/mcps/datacloud-dataproc-toolbox/entry.json +++ b/registry/mcps/datacloud-dataproc-toolbox/entry.json @@ -37,7 +37,6 @@ "required": true, "description": "Dataproc Toolbox value for dataproc region." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json b/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json index d2472f6..f0ce404 100644 --- a/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json +++ b/registry/mcps/datacloud-knowledge-catalog-toolbox/entry.json @@ -33,7 +33,6 @@ "required": true, "description": "Dataplex Knowledge Catalog Toolbox value for dataplex project." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-serverless-spark-toolbox/entry.json b/registry/mcps/datacloud-serverless-spark-toolbox/entry.json index f933102..691a6f8 100644 --- a/registry/mcps/datacloud-serverless-spark-toolbox/entry.json +++ b/registry/mcps/datacloud-serverless-spark-toolbox/entry.json @@ -37,7 +37,6 @@ "required": true, "description": "Serverless Spark Toolbox value for serverless spark location." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/datacloud-spanner-toolbox/entry.json b/registry/mcps/datacloud-spanner-toolbox/entry.json index 88aa8a9..7a4e129 100644 --- a/registry/mcps/datacloud-spanner-toolbox/entry.json +++ b/registry/mcps/datacloud-spanner-toolbox/entry.json @@ -47,7 +47,6 @@ "required": true, "description": "Spanner Toolbox value for spanner project." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/desktop-commander/entry.json b/registry/mcps/desktop-commander/entry.json index a507697..e7c6f9e 100644 --- a/registry/mcps/desktop-commander/entry.json +++ b/registry/mcps/desktop-commander/entry.json @@ -24,7 +24,6 @@ "npx", "-y", "@wonderwhy-er/desktop-commander@latest" - ], - "notes": "Imported from plugin bundle config `desktop-commander/.claude-plugin/plugin.json`." + ] } } diff --git a/registry/mcps/discourse/entry.json b/registry/mcps/discourse/entry.json index 4f47d87..31b47c6 100644 --- a/registry/mcps/discourse/entry.json +++ b/registry/mcps/discourse/entry.json @@ -28,8 +28,7 @@ "required": true, "description": "Discourse API key for writes or private content access." } - ], - "notes": "Transport from source catalog: stdio; optional HTTP. Auth from source catalog: None by default; Discourse API keys for writes/private access. Official Discourse GitHub repo; supports selecting/tethering to a Discourse site." + ] }, "homepage": "https://github.com/discourse/discourse-mcp", "repo": "https://github.com/discourse/discourse-mcp" diff --git a/registry/mcps/endor-cli-tools/entry.json b/registry/mcps/endor-cli-tools/entry.json index d290603..424190d 100644 --- a/registry/mcps/endor-cli-tools/entry.json +++ b/registry/mcps/endor-cli-tools/entry.json @@ -22,8 +22,7 @@ "endorctl", "ai-tools", "mcp-server" - ], - "notes": "Imported from plugin bundle config `ai-plugins/.mcp.json`." + ] }, "repo": "https://github.com/endorlabs/ai-plugins", "license": "MIT" diff --git a/registry/mcps/exa/entry.json b/registry/mcps/exa/entry.json index e24f043..e4e235e 100644 --- a/registry/mcps/exa/entry.json +++ b/registry/mcps/exa/entry.json @@ -27,8 +27,7 @@ "description": "Exa API key for hosted or local search access.", "url": "https://exa.ai" } - ], - "notes": "Transport from source catalog: Streamable HTTP / remote MCP; local stdio wrapper. Auth from source catalog: Optional Exa API key / hosted connector. Official Exa docs and provider-owned repo: https://github.com/exa-labs/exa-mcp-server" + ] }, "homepage": "https://exa.ai/docs/reference/exa-mcp" } diff --git a/registry/mcps/expo/entry.json b/registry/mcps/expo/entry.json index 9856d87..49b768d 100644 --- a/registry/mcps/expo/entry.json +++ b/registry/mcps/expo/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.expo.dev/mcp" - ], - "notes": "Imported from plugin bundle config `expo/.mcp.json`." + ] }, "homepage": "https://docs.expo.dev/skills/", "repo": "https://github.com/expo/skills/tree/main/plugins/expo", diff --git a/registry/mcps/fathom/entry.json b/registry/mcps/fathom/entry.json index c1d84e4..d8e3803 100644 --- a/registry/mcps/fathom/entry.json +++ b/registry/mcps/fathom/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://api.fathom.ai/mcp" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: Fathom auth not parsed from public registry entry. Official MCP registry latest entry uses ai.fathom.api/mcp and api.fathom.ai domain." + ] }, "homepage": "https://registry.modelcontextprotocol.io/v0/servers/ai.fathom.api%2Fmcp/versions/latest" } diff --git a/registry/mcps/fiftyone/entry.json b/registry/mcps/fiftyone/entry.json index 1962a25..2837502 100644 --- a/registry/mcps/fiftyone/entry.json +++ b/registry/mcps/fiftyone/entry.json @@ -20,7 +20,7 @@ "--", "fiftyone-mcp" ], - "notes": "Imported from plugin bundle config `fiftyone/.mcp.json`. The `fiftyone-mcp` CLI must be available on PATH before starting this MCP server." + "notes": "The `fiftyone-mcp` CLI must be available on PATH before starting this MCP server." }, "homepage": "https://docs.voxel51.com/", "repo": "https://github.com/voxel51/fiftyone-skills", diff --git a/registry/mcps/figma/entry.json b/registry/mcps/figma/entry.json index 6672a7d..3cffc06 100644 --- a/registry/mcps/figma/entry.json +++ b/registry/mcps/figma/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.figma.com/mcp" - ], - "notes": "Transport from source catalog: Remote MCP / Streamable HTTP; desktop MCP server also available through Figma desktop app. Auth from source catalog: Figma account authorization; remote server available on all seats/plans; desktop server requires Dev or Full seat on paid plans. Official Figma MCP server. Remote endpoint is preferred; desktop server runs locally through the Figma desktop app for specific org/enterprise use cases." + ] }, "homepage": "https://help.figma.com/hc/en-us/articles/32132100833559-Guide-to-the-Figma-MCP-server" } diff --git a/registry/mcps/firebase/entry.json b/registry/mcps/firebase/entry.json index f9f8853..2e8da65 100644 --- a/registry/mcps/firebase/entry.json +++ b/registry/mcps/firebase/entry.json @@ -22,7 +22,6 @@ "-y", "firebase-tools@latest", "mcp" - ], - "notes": "Imported from plugin bundle config `firebase/.mcp.json`." + ] } } diff --git a/registry/mcps/firecrawl/entry.json b/registry/mcps/firecrawl/entry.json index b9b66f5..f179f82 100644 --- a/registry/mcps/firecrawl/entry.json +++ b/registry/mcps/firecrawl/entry.json @@ -29,8 +29,7 @@ "description": "Firecrawl API key for crawling and scraping.", "url": "https://www.firecrawl.dev/app/api-keys" } - ], - "notes": "Transport from source catalog: stdio; optional streamable HTTP. Auth from source catalog: Firecrawl API key or OAuth bearer. Official Firecrawl org repo; docs show local HTTP mode at http://localhost:3000/mcp." + ] }, "homepage": "https://github.com/firecrawl/firecrawl-mcp-server", "repo": "https://github.com/firecrawl/firecrawl-mcp-server" diff --git a/registry/mcps/firestore/entry.json b/registry/mcps/firestore/entry.json index 22e8b05..97c72de 100644 --- a/registry/mcps/firestore/entry.json +++ b/registry/mcps/firestore/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://firestore.googleapis.com/mcp" - ], - "notes": "Transport from source catalog: remote HTTP. Auth from source catalog: Google IAM/OAuth. Google Cloud supported-products page lists Firestore MCP endpoint." + ] }, "homepage": "https://docs.cloud.google.com/mcp/supported-products" } diff --git a/registry/mcps/forge/entry.json b/registry/mcps/forge/entry.json index c2ef917..6b4e6df 100644 --- a/registry/mcps/forge/entry.json +++ b/registry/mcps/forge/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://mcp.atlassian.com/v1/forge/mcp" - ], - "notes": "Imported from plugin bundle config `forge-skills/.mcp.json`." + ] } } diff --git a/registry/mcps/fullstory/entry.json b/registry/mcps/fullstory/entry.json index 9949918..f82dd04 100644 --- a/registry/mcps/fullstory/entry.json +++ b/registry/mcps/fullstory/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Fullstory", "tagline": "Connect Cline to Fullstory", - "description": "Connect Cline to Fullstory through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Fullstory through this MCP server.", "author": { "name": "Fullstory" }, @@ -19,8 +19,7 @@ "--transport", "http", "https://api.fullstory.com/mcp/fullstory" - ], - "notes": "Imported from plugin bundle config `fullstory/.mcp.json`." + ] }, "homepage": "https://www.fullstory.com", "license": "MIT" diff --git a/registry/mcps/github/entry.json b/registry/mcps/github/entry.json index ea979a2..8e51a5e 100644 --- a/registry/mcps/github/entry.json +++ b/registry/mcps/github/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://api.githubcopilot.com/mcp/" - ], - "notes": "Transport from source catalog: remote HTTP or local stdio. Auth from source catalog: GitHub OAuth or PAT. Official GitHub org repo and hosted remote MCP server." + ] }, "homepage": "https://github.com/github/github-mcp-server", "repo": "https://github.com/github/github-mcp-server" diff --git a/registry/mcps/gitlab/entry.json b/registry/mcps/gitlab/entry.json index 8e7b843..35d43ee 100644 --- a/registry/mcps/gitlab/entry.json +++ b/registry/mcps/gitlab/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://gitlab.com/api/v4/mcp" - ], - "notes": "Transport from source catalog: HTTP recommended; stdio via mcp-remote. Auth from source catalog: OAuth 2.0 Dynamic Client Registration. Official GitLab MCP server, beta, Premium/Ultimate." + ] }, "homepage": "https://docs.gitlab.com/user/gitlab_duo/model_context_protocol/mcp_server/" } diff --git a/registry/mcps/google-bigquery/entry.json b/registry/mcps/google-bigquery/entry.json index 3d42568..cbc5997 100644 --- a/registry/mcps/google-bigquery/entry.json +++ b/registry/mcps/google-bigquery/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://bigquery.googleapis.com/mcp" - ], - "notes": "Transport from source catalog: remote HTTP. Auth from source catalog: Google IAM/OAuth. Google Cloud docs list BigQuery MCP endpoint; OSS option also exists via googleapis/mcp-toolbox." + ] }, "homepage": "https://docs.cloud.google.com/bigquery/docs/use-bigquery-mcp" } diff --git a/registry/mcps/google-cloud-storage/entry.json b/registry/mcps/google-cloud-storage/entry.json index 81501a6..d25e6a8 100644 --- a/registry/mcps/google-cloud-storage/entry.json +++ b/registry/mcps/google-cloud-storage/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://storage.googleapis.com/storage/mcp" - ], - "notes": "Transport from source catalog: remote HTTP. Auth from source catalog: Google IAM/OAuth. Google Cloud supported-products page lists Cloud Storage MCP endpoint." + ] }, "homepage": "https://docs.cloud.google.com/mcp/supported-products" } diff --git a/registry/mcps/google-looker/entry.json b/registry/mcps/google-looker/entry.json index 102d4ee..4512e10 100644 --- a/registry/mcps/google-looker/entry.json +++ b/registry/mcps/google-looker/entry.json @@ -21,8 +21,7 @@ "@toolbox-sdk/server", "--prebuilt=looker", "--stdio" - ], - "notes": "Transport from source catalog: local stdio or HTTP via MCP Toolbox. Auth from source catalog: Google/application credentials. Google mcp-toolbox docs list Looker using MCP." + ] }, "homepage": "https://mcp-toolbox.dev/documentation/configuration/prebuilt-configs/", "repo": "https://github.com/googleapis/mcp-toolbox" diff --git a/registry/mcps/graphos-tools/entry.json b/registry/mcps/graphos-tools/entry.json index 250d5e9..e794109 100644 --- a/registry/mcps/graphos-tools/entry.json +++ b/registry/mcps/graphos-tools/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.apollographql.com" - ], - "notes": "Imported from plugin bundle config `apollo-skills/.mcp.json`." + ] }, "homepage": "https://www.apollographql.com", "repo": "https://github.com/apollographql/skills", diff --git a/registry/mcps/greptile/entry.json b/registry/mcps/greptile/entry.json index 8718343..0492585 100644 --- a/registry/mcps/greptile/entry.json +++ b/registry/mcps/greptile/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Greptile", "tagline": "Connect Cline to Greptile", - "description": "Connect Cline to Greptile through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Greptile through this MCP server.", "author": { "name": "Greptile" }, @@ -28,8 +28,7 @@ "required": true, "description": "Greptile value for greptile api key." } - ], - "notes": "Imported from plugin bundle config `greptile/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://greptile.com/docs" } diff --git a/registry/mcps/gumloop/entry.json b/registry/mcps/gumloop/entry.json index 8b45d51..03be39b 100644 --- a/registry/mcps/gumloop/entry.json +++ b/registry/mcps/gumloop/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.gumloop.com/gumloop/mcp" - ], - "notes": "Transport from source catalog: Remote MCP / SSE via mcp-remote for unsupported clients. Auth from source catalog: OAuth plus Gumloop API key. Official Gumloop remote MCP server for workflows, agents, sessions, skills, artifacts, teams, connected MCP server management, documentation, and audit logs." + ] }, "homepage": "https://docs.gumloop.com/mcp-server/overview" } diff --git a/registry/mcps/huggingface-skills/entry.json b/registry/mcps/huggingface-skills/entry.json index ac75565..a28258f 100644 --- a/registry/mcps/huggingface-skills/entry.json +++ b/registry/mcps/huggingface-skills/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://huggingface.co/mcp?login" - ], - "notes": "Imported from plugin bundle config `huggingface-skills/.mcp.json`." + ] }, "homepage": "https://github.com/huggingface/skills", "repo": "https://github.com/huggingface/skills", diff --git a/registry/mcps/hunter/entry.json b/registry/mcps/hunter/entry.json index 1bc1762..b54ebaa 100644 --- a/registry/mcps/hunter/entry.json +++ b/registry/mcps/hunter/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.hunter.io/mcp" - ], - "notes": "Imported from plugin bundle config `hunter/.mcp.json`." + ] }, "homepage": "https://hunter.io", "repo": "https://github.com/hunter-io/claude-plugin", diff --git a/registry/mcps/intercom/entry.json b/registry/mcps/intercom/entry.json index 4cb8ffe..352bc1e 100644 --- a/registry/mcps/intercom/entry.json +++ b/registry/mcps/intercom/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Intercom", "tagline": "Connect Cline to Intercom", - "description": "Connect Cline to Intercom through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Intercom through this MCP server.", "author": { "name": "Intercom" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.intercom.com/mcp" - ], - "notes": "Imported from plugin bundle config `intercom/.mcp.json`." + ] }, "homepage": "https://developers.intercom.com", "repo": "https://github.com/intercom/claude-plugin-external", diff --git a/registry/mcps/jira/entry.json b/registry/mcps/jira/entry.json index 4058897..913051e 100644 --- a/registry/mcps/jira/entry.json +++ b/registry/mcps/jira/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.atlassian.com/v1/mcp/authv2" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth 2.1; optional API token. Atlassian Rovo MCP supports Jira, Confluence, and Compass; old SSE endpoint deprecated after 2026-06-30." + ] }, "homepage": "https://support.atlassian.com/atlassian-rovo-mcp-server/docs/getting-started-with-the-atlassian-remote-mcp-server/" } diff --git a/registry/mcps/laravel-boost/entry.json b/registry/mcps/laravel-boost/entry.json index 96bd1ff..b1626ae 100644 --- a/registry/mcps/laravel-boost/entry.json +++ b/registry/mcps/laravel-boost/entry.json @@ -21,6 +21,6 @@ "artisan", "boost:mcp" ], - "notes": "Imported from plugin bundle config `laravel-boost/.mcp.json`. The `php` CLI must be available on PATH before starting this MCP server." + "notes": "The `php` CLI must be available on PATH before starting this MCP server." } } diff --git a/registry/mcps/launchdarkly/entry.json b/registry/mcps/launchdarkly/entry.json index d213698..2ac728c 100644 --- a/registry/mcps/launchdarkly/entry.json +++ b/registry/mcps/launchdarkly/entry.json @@ -26,8 +26,7 @@ "start", "--api-key", "" - ], - "notes": "Transport from source catalog: stdio; optional local SSE via Docker. Auth from source catalog: LaunchDarkly API key. Official LaunchDarkly GitHub repo." + ] }, "homepage": "https://github.com/launchdarkly/mcp-server", "repo": "https://github.com/launchdarkly/mcp-server" diff --git a/registry/mcps/legalzoom/entry.json b/registry/mcps/legalzoom/entry.json index 5e6c83a..9518073 100644 --- a/registry/mcps/legalzoom/entry.json +++ b/registry/mcps/legalzoom/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://www.legalzoom.com/mcp/claude/v1" - ], - "notes": "Imported from plugin bundle config `legalzoom/.mcp.json`." + ] }, "homepage": "https://github.com/legalzoom/claude-plugins", "repo": "https://github.com/legalzoom/claude-plugins", diff --git a/registry/mcps/linear/entry.json b/registry/mcps/linear/entry.json index 2fd7c1a..0b90fa0 100644 --- a/registry/mcps/linear/entry.json +++ b/registry/mcps/linear/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.linear.app/mcp" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth 2.1; API key/Bearer supported. Official hosted MCP docs." + ] }, "homepage": "https://linear.app/docs/mcp" } diff --git a/registry/mcps/logfire/entry.json b/registry/mcps/logfire/entry.json index 6cbbe73..d2d79be 100644 --- a/registry/mcps/logfire/entry.json +++ b/registry/mcps/logfire/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://logfire-us.pydantic.dev/mcp" - ], - "notes": "Imported from plugin bundle config `logfire/.mcp.json`." + ] }, "homepage": "https://github.com/pydantic/skills/tree/main/plugins/logfire", "repo": "https://github.com/pydantic/skills", diff --git a/registry/mcps/lusha/entry.json b/registry/mcps/lusha/entry.json index 5f721af..b07320d 100644 --- a/registry/mcps/lusha/entry.json +++ b/registry/mcps/lusha/entry.json @@ -28,7 +28,6 @@ "X-Lusha-Plugin: claude", "--header", "X-Lusha-Plugin-Version: 0.1.0" - ], - "notes": "Imported from plugin bundle config `lusha/.claude-plugin/plugin.json`." + ] } } diff --git a/registry/mcps/mailgun/entry.json b/registry/mcps/mailgun/entry.json index 57a0b23..0995e7b 100644 --- a/registry/mcps/mailgun/entry.json +++ b/registry/mcps/mailgun/entry.json @@ -20,8 +20,7 @@ "npx", "-y", "@mailgun/mcp-server" - ], - "notes": "Transport from source catalog: stdio. Auth from source catalog: Mailgun API key. Official Mailgun GitHub repo; local only, no hosted server found." + ] }, "homepage": "https://github.com/mailgun/mailgun-mcp-server", "repo": "https://github.com/mailgun/mailgun-mcp-server" diff --git a/registry/mcps/mapbox-devkit/entry.json b/registry/mcps/mapbox-devkit/entry.json index 24cce3a..1bcb48a 100644 --- a/registry/mcps/mapbox-devkit/entry.json +++ b/registry/mcps/mapbox-devkit/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp-devkit.mapbox.com/mcp" - ], - "notes": "Imported from plugin bundle config `mapbox/.mcp.json`." + ] }, "homepage": "https://github.com/mapbox/mapbox-agent-skills", "repo": "https://github.com/mapbox/mapbox-agent-skills", diff --git a/registry/mcps/mapbox-docs/entry.json b/registry/mcps/mapbox-docs/entry.json index c042796..3aa1bab 100644 --- a/registry/mcps/mapbox-docs/entry.json +++ b/registry/mcps/mapbox-docs/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp-docs.mapbox.com/mcp" - ], - "notes": "Imported from plugin bundle config `mapbox/.mcp.json`." + ] }, "homepage": "https://github.com/mapbox/mapbox-agent-skills", "repo": "https://github.com/mapbox/mapbox-agent-skills", diff --git a/registry/mcps/mapbox/entry.json b/registry/mcps/mapbox/entry.json index 3c467ee..107f427 100644 --- a/registry/mcps/mapbox/entry.json +++ b/registry/mcps/mapbox/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.mapbox.com/mcp" - ], - "notes": "Imported from plugin bundle config `mapbox/.mcp.json`." + ] }, "homepage": "https://github.com/mapbox/mapbox-agent-skills", "repo": "https://github.com/mapbox/mapbox-agent-skills", diff --git a/registry/mcps/mercadopago/entry.json b/registry/mcps/mercadopago/entry.json index bc3b722..9dcb042 100644 --- a/registry/mcps/mercadopago/entry.json +++ b/registry/mcps/mercadopago/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Mercado Pago", "tagline": "Connect Cline to Mercado Pago", - "description": "Mercado Pago full-product integration toolkit. One agent routes to four orchestration skills (mp-integrate, mp-webhooks, mp-test-setup, mp-review) that pull live data from the official Mercado Pago MCP server. The MCP must always be connected \u2014 there is no offline mode.", + "description": "Mercado Pago full-product integration toolkit. One agent routes to four orchestration skills (mp-integrate, mp-webhooks, mp-test-setup, mp-review) that pull live data from the official Mercado Pago MCP server. The MCP must always be connected — there is no offline mode.", "author": { "name": "Mercado Pago Developer Experience" }, @@ -24,8 +24,7 @@ "X-Plugin-Version: 4.0.0", "--header", "X-Invocation-Context: router" - ], - "notes": "Imported from plugin bundle config `mercadopago/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "repo": "https://github.com/mercadopago/mercadopago-claude-marketplace", "license": "Apache-2.0" diff --git a/registry/mcps/microsoft-learn/entry.json b/registry/mcps/microsoft-learn/entry.json index 42ec063..49155ba 100644 --- a/registry/mcps/microsoft-learn/entry.json +++ b/registry/mcps/microsoft-learn/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://learn.microsoft.com/api/mcp" - ], - "notes": "Imported from plugin bundle config `microsoft-docs/.mcp.json`." + ] }, "homepage": "https://learn.microsoft.com", "repo": "https://github.com/microsoftdocs/mcp", diff --git a/registry/mcps/mintlify/entry.json b/registry/mcps/mintlify/entry.json index db52498..8370873 100644 --- a/registry/mcps/mintlify/entry.json +++ b/registry/mcps/mintlify/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Mintlify", "tagline": "Connect Cline to Mintlify", - "description": "Connect Cline to Mintlify through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Mintlify through this MCP server.", "author": { "name": "Mintlify" }, @@ -19,7 +19,6 @@ "--transport", "http", "https://mintlify.com/docs/mcp" - ], - "notes": "Imported from plugin bundle config `mintlify/.mcp.json`." + ] } } diff --git a/registry/mcps/miro/entry.json b/registry/mcps/miro/entry.json index be8cc5a..15e1ad1 100644 --- a/registry/mcps/miro/entry.json +++ b/registry/mcps/miro/entry.json @@ -22,8 +22,7 @@ "https://mcp.miro.com/", "--header", "X-AI-Source: claude-code-plugin" - ], - "notes": "Imported from plugin bundle config `miro/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://miro.com", "repo": "https://github.com/miroapp/miro-ai", diff --git a/registry/mcps/mongodb/entry.json b/registry/mcps/mongodb/entry.json index ff179cf..af0eb08 100644 --- a/registry/mcps/mongodb/entry.json +++ b/registry/mcps/mongodb/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "MongoDB", "tagline": "Connect Cline to MongoDB", - "description": "Connect Cline to MongoDB through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to MongoDB through this MCP server.", "author": { "name": "MongoDB" }, @@ -21,8 +21,7 @@ "npx", "-y", "mongodb-mcp-server@<3" - ], - "notes": "Imported from plugin bundle config `mongodb/mcp.json`." + ] }, "homepage": "https://www.mongodb.com/docs/codex/", "repo": "https://github.com/mongodb/agent-skills", diff --git a/registry/mcps/neon/entry.json b/registry/mcps/neon/entry.json index 1b0b15c..9cadedf 100644 --- a/registry/mcps/neon/entry.json +++ b/registry/mcps/neon/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.neon.tech/mcp" - ], - "notes": "Imported from plugin bundle config `neon/mcp.json`." + ] }, "homepage": "https://neon.com", "repo": "https://github.com/neondatabase/agent-skills", diff --git a/registry/mcps/nimble/entry.json b/registry/mcps/nimble/entry.json index c82c548..f2a7498 100644 --- a/registry/mcps/nimble/entry.json +++ b/registry/mcps/nimble/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.nimbleway.com/mcp" - ], - "notes": "Imported from plugin bundle config `nimble/.mcp.json`." + ] }, "homepage": "https://www.nimbleway.com", "repo": "https://github.com/Nimbleway/agent-skills", diff --git a/registry/mcps/notebook/entry.json b/registry/mcps/notebook/entry.json index 7a7f5de..ff86bb3 100644 --- a/registry/mcps/notebook/entry.json +++ b/registry/mcps/notebook/entry.json @@ -28,7 +28,6 @@ "required": true, "description": "Data Agent Kit Starter Pack value for data cloud curr ide name." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/notion/entry.json b/registry/mcps/notion/entry.json index 4de703c..4222ee9 100644 --- a/registry/mcps/notion/entry.json +++ b/registry/mcps/notion/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.notion.com/mcp" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: OAuth. Official Notion hosted MCP docs." + ] }, "homepage": "https://developers.notion.com/guides/mcp/overview" } diff --git a/registry/mcps/pagerduty/entry.json b/registry/mcps/pagerduty/entry.json index 7603495..6a74dc6 100644 --- a/registry/mcps/pagerduty/entry.json +++ b/registry/mcps/pagerduty/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "PagerDuty", "tagline": "Connect Cline to PagerDuty", - "description": "Connect Cline to PagerDuty through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to PagerDuty through this MCP server.", "author": { "name": "PagerDuty" }, @@ -29,7 +29,6 @@ "required": true, "description": "PagerDuty API key for the remote MCP server." } - ], - "notes": "Imported from plugin bundle config `pagerduty/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] } } diff --git a/registry/mcps/paypal/entry.json b/registry/mcps/paypal/entry.json index 6470f24..da07f3b 100644 --- a/registry/mcps/paypal/entry.json +++ b/registry/mcps/paypal/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.paypal.com/mcp" - ], - "notes": "Transport from source catalog: Streamable HTTP; SSE also listed in registry; local stdio package. Auth from source catalog: OAuth bearer token / PayPal access token. Official PayPal GitHub repo plus MCP registry entry for mcp.paypal.com." + ] }, "homepage": "https://github.com/paypal/paypal-mcp-server", "repo": "https://github.com/paypal/paypal-mcp-server" diff --git a/registry/mcps/perplexity/entry.json b/registry/mcps/perplexity/entry.json index a1f0342..3100782 100644 --- a/registry/mcps/perplexity/entry.json +++ b/registry/mcps/perplexity/entry.json @@ -20,8 +20,7 @@ "npx", "-y", "@perplexity-ai/mcp-server" - ], - "notes": "Transport from source catalog: stdio. Auth from source catalog: Perplexity API key. Official Perplexity docs and GitHub repo." + ] }, "homepage": "https://docs.perplexity.ai/docs/getting-started/integrations/mcp-server", "repo": "https://github.com/perplexityai/modelcontextprotocol" diff --git a/registry/mcps/pinecone/entry.json b/registry/mcps/pinecone/entry.json index 429283d..10258b8 100644 --- a/registry/mcps/pinecone/entry.json +++ b/registry/mcps/pinecone/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Pinecone", "tagline": "Connect Cline to Pinecone", - "description": "Connect Cline to Pinecone through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Pinecone through this MCP server.", "author": { "name": "Pinecone" }, @@ -28,7 +28,6 @@ "required": true, "description": "Pinecone value for pinecone api key." } - ], - "notes": "Imported from plugin bundle config `pinecone/.mcp.json`." + ] } } diff --git a/registry/mcps/planetscale/entry.json b/registry/mcps/planetscale/entry.json index a18b3c3..5d1932b 100644 --- a/registry/mcps/planetscale/entry.json +++ b/registry/mcps/planetscale/entry.json @@ -19,7 +19,6 @@ "--transport", "http", "https://mcp.pscale.dev/mcp/planetscale" - ], - "notes": "Imported from plugin bundle config `planetscale/.mcp.json`." + ] } } diff --git a/registry/mcps/playwright/entry.json b/registry/mcps/playwright/entry.json index 05ffbdb..d9684ef 100644 --- a/registry/mcps/playwright/entry.json +++ b/registry/mcps/playwright/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Playwright", "tagline": "Connect Cline to Playwright", - "description": "Connect Cline to Playwright through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Playwright through this MCP server.", "author": { "name": "Microsoft" }, @@ -19,7 +19,6 @@ "--", "npx", "@playwright/mcp@latest" - ], - "notes": "Imported from plugin bundle config `playwright/.mcp.json`." + ] } } diff --git a/registry/mcps/posthog/entry.json b/registry/mcps/posthog/entry.json index 3e41034..b38397e 100644 --- a/registry/mcps/posthog/entry.json +++ b/registry/mcps/posthog/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.posthog.com/mcp" - ], - "notes": "Transport from source catalog: HTTP. Auth from source catalog: OAuth/login. Official PostHog docs and repo: https://github.com/PostHog/mcp" + ] }, "homepage": "https://posthog.com/docs/model-context-protocol" } diff --git a/registry/mcps/postman/entry.json b/registry/mcps/postman/entry.json index 207d351..4eaa3c5 100644 --- a/registry/mcps/postman/entry.json +++ b/registry/mcps/postman/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Postman", "tagline": "Connect Cline to Postman", - "description": "Connect Cline to Postman through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Postman through this MCP server.", "author": { "name": "Postman" }, @@ -26,8 +26,7 @@ "X-Plugin-Version: 1.1.0", "--header", "User-Agent: postman-claude-code-plugin/1.1.0" - ], - "notes": "Imported from plugin bundle config `postman/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://learning.postman.com/docs/developer/postman-mcp-server/", "repo": "https://github.com/Postman-Devrel/postman-claude-code-plugin", diff --git a/registry/mcps/prisma-local/entry.json b/registry/mcps/prisma-local/entry.json index 24704a6..99a0ddd 100644 --- a/registry/mcps/prisma-local/entry.json +++ b/registry/mcps/prisma-local/entry.json @@ -22,7 +22,6 @@ "-y", "prisma", "mcp" - ], - "notes": "Imported from plugin bundle config `prisma/.mcp.json`." + ] } } diff --git a/registry/mcps/prisma-remote/entry.json b/registry/mcps/prisma-remote/entry.json index e1f4a20..aff1856 100644 --- a/registry/mcps/prisma-remote/entry.json +++ b/registry/mcps/prisma-remote/entry.json @@ -20,7 +20,6 @@ "--transport", "http", "https://mcp.prisma.io/mcp" - ], - "notes": "Imported from plugin bundle config `prisma/.mcp.json`." + ] } } diff --git a/registry/mcps/qt-docs/entry.json b/registry/mcps/qt-docs/entry.json index 711b9bc..8a64f42 100644 --- a/registry/mcps/qt-docs/entry.json +++ b/registry/mcps/qt-docs/entry.json @@ -20,7 +20,6 @@ "--transport", "http", "https://qt-docs-mcp.qt.io/mcp" - ], - "notes": "Imported from plugin bundle config `qt-development-skills/.mcp.json`." + ] } } diff --git a/registry/mcps/quarkus-agent/entry.json b/registry/mcps/quarkus-agent/entry.json index 90e1fd2..2db531e 100644 --- a/registry/mcps/quarkus-agent/entry.json +++ b/registry/mcps/quarkus-agent/entry.json @@ -19,8 +19,7 @@ "--", "jbang", "quarkus-agent-mcp@quarkusio" - ], - "notes": "Imported from plugin bundle config `quarkus-agent/.mcp.json`." + ] }, "homepage": "https://github.com/quarkusio/quarkus-agent-mcp", "repo": "https://github.com/quarkusio/quarkus-agent-mcp", diff --git a/registry/mcps/railway/entry.json b/registry/mcps/railway/entry.json index bbddb4b..0d79fc4 100644 --- a/registry/mcps/railway/entry.json +++ b/registry/mcps/railway/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Railway", "tagline": "Connect Cline to Railway", - "description": "Connect Cline to Railway through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Railway through this MCP server.", "author": { "name": "Railway" }, @@ -21,7 +21,7 @@ "railway", "mcp" ], - "notes": "Imported from plugin bundle config `railway/.mcp.json`. The `railway` CLI must be available on PATH before starting this MCP server." + "notes": "The `railway` CLI must be available on PATH before starting this MCP server." }, "homepage": "https://docs.railway.com/agents", "repo": "https://github.com/railwayapp/railway-skills", diff --git a/registry/mcps/ramp/entry.json b/registry/mcps/ramp/entry.json index 29c50c8..5344d04 100644 --- a/registry/mcps/ramp/entry.json +++ b/registry/mcps/ramp/entry.json @@ -40,8 +40,7 @@ "required": true, "description": "Ramp environment, usually demo or prd." } - ], - "notes": "Transport from source catalog: stdio. Auth from source catalog: client credentials. Ramp public repo; README copyright Ramp Business Corporation." + ] }, "homepage": "https://github.com/ramp-public/ramp_mcp", "repo": "https://github.com/ramp-public/ramp_mcp" diff --git a/registry/mcps/resend/entry.json b/registry/mcps/resend/entry.json index 52d1f6e..36b9d44 100644 --- a/registry/mcps/resend/entry.json +++ b/registry/mcps/resend/entry.json @@ -27,8 +27,7 @@ "required": true, "description": "Resend value for resend api key." } - ], - "notes": "Imported from plugin bundle config `resend/.mcp.json`." + ] }, "homepage": "https://resend.com", "repo": "https://github.com/resend/resend-skills", diff --git a/registry/mcps/revenuecat/entry.json b/registry/mcps/revenuecat/entry.json index 123dd94..0868b80 100644 --- a/registry/mcps/revenuecat/entry.json +++ b/registry/mcps/revenuecat/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.revenuecat.ai/mcp" - ], - "notes": "Imported from plugin bundle config `revenuecat/.mcp.json`." + ] }, "homepage": "https://www.revenuecat.com/docs/tools/mcp/overview", "repo": "https://github.com/RevenueCat/ai-toolkit", diff --git a/registry/mcps/rootly/entry.json b/registry/mcps/rootly/entry.json index 08d8e69..34081bb 100644 --- a/registry/mcps/rootly/entry.json +++ b/registry/mcps/rootly/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.rootly.com/mcp" - ], - "notes": "Imported from plugin bundle config `rootly/.mcp.json`." + ] }, "homepage": "https://rootly.com/integrations/claude", "repo": "https://github.com/Rootly-AI-Labs/rootly-claude-plugin", diff --git a/registry/mcps/salesforce/entry.json b/registry/mcps/salesforce/entry.json index 4f6306b..bcefa8f 100644 --- a/registry/mcps/salesforce/entry.json +++ b/registry/mcps/salesforce/entry.json @@ -25,8 +25,7 @@ "DEFAULT_TARGET_ORG", "--toolsets", "orgs,metadata,data,users" - ], - "notes": "Transport from source catalog: stdio. Auth from source catalog: Salesforce CLI authorized org. Official Salesforce docs; official repo: https://github.com/salesforcecli/mcp." + ] }, "homepage": "https://developer.salesforce.com/docs/ai/agentforce/guide/mcp.html" } diff --git a/registry/mcps/sanity/entry.json b/registry/mcps/sanity/entry.json index 1098c9b..3342a92 100644 --- a/registry/mcps/sanity/entry.json +++ b/registry/mcps/sanity/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Sanity", "tagline": "Connect Cline to Sanity", - "description": "Connect Cline to Sanity through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Sanity through this MCP server.", "author": { "name": "Sanity" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.sanity.io" - ], - "notes": "Imported from plugin bundle config `sanity/.mcp.json`." + ] }, "homepage": "https://github.com/sanity-io/agent-toolkit", "repo": "https://github.com/sanity-io/agent-toolkit", diff --git a/registry/mcps/sap-fiori/entry.json b/registry/mcps/sap-fiori/entry.json index b94d12a..d75707f 100644 --- a/registry/mcps/sap-fiori/entry.json +++ b/registry/mcps/sap-fiori/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "SAP Fiori", "tagline": "Connect Cline to SAP Fiori", - "description": "Connect Cline to SAP Fiori through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to SAP Fiori through this MCP server.", "author": { "name": "SAP" }, @@ -22,8 +22,7 @@ "--yes", "@sap-ux/fiori-mcp-server@latest", "fiori-mcp" - ], - "notes": "Imported from plugin bundle config `sap-fiori-mcp-server/.mcp.json`." + ] }, "homepage": "https://github.com/SAP/open-ux-tools/tree/main/packages/fiori-mcp-server", "repo": "https://github.com/SAP/open-ux-tools", diff --git a/registry/mcps/sap-mdk/entry.json b/registry/mcps/sap-mdk/entry.json index 73931c4..154cb2e 100644 --- a/registry/mcps/sap-mdk/entry.json +++ b/registry/mcps/sap-mdk/entry.json @@ -20,8 +20,7 @@ "npx", "-y", "@sap/mdk-mcp-server" - ], - "notes": "Imported from plugin bundle config `sap-mdk-server/.mcp.json`." + ] }, "homepage": "https://help.sap.com/docs/MDK", "repo": "https://github.com/SAP/mdk-mcp-server", diff --git a/registry/mcps/semgrep/entry.json b/registry/mcps/semgrep/entry.json index fcbd829..5f4257c 100644 --- a/registry/mcps/semgrep/entry.json +++ b/registry/mcps/semgrep/entry.json @@ -21,6 +21,6 @@ "semgrep", "mcp" ], - "notes": "Imported from plugin bundle config `semgrep/.mcp.json`. The `semgrep` CLI must be available on PATH before starting this MCP server." + "notes": "The `semgrep` CLI must be available on PATH before starting this MCP server." } } diff --git a/registry/mcps/sentry/entry.json b/registry/mcps/sentry/entry.json index 21c712a..4e6e0eb 100644 --- a/registry/mcps/sentry/entry.json +++ b/registry/mcps/sentry/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.sentry.dev" - ], - "notes": "Transport from source catalog: Remote MCP service; stdio supported via npm package. Auth from source catalog: OAuth for remote flow; Sentry user auth token for stdio/self-hosted. Screenshot-only row. Official getsentry/sentry-mcp repo; stdio requires Sentry auth token with org/project/team/event scopes; remote production service is mcp.sentry.dev." + ] }, "homepage": "https://github.com/getsentry/sentry-mcp", "repo": "https://github.com/getsentry/sentry-mcp" diff --git a/registry/mcps/serena/entry.json b/registry/mcps/serena/entry.json index 52932b7..2395c55 100644 --- a/registry/mcps/serena/entry.json +++ b/registry/mcps/serena/entry.json @@ -22,7 +22,6 @@ "git+https://github.com/oraios/serena", "serena", "start-mcp-server" - ], - "notes": "Imported from plugin bundle config `serena/.mcp.json`." + ] } } diff --git a/registry/mcps/shopify-dev/entry.json b/registry/mcps/shopify-dev/entry.json index 87d3a90..35d4ed7 100644 --- a/registry/mcps/shopify-dev/entry.json +++ b/registry/mcps/shopify-dev/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Shopify Dev", "tagline": "Connect Cline to Shopify Dev", - "description": "Connect Cline to Shopify Dev through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Shopify Dev through this MCP server.", "author": { "name": "Shopify" }, @@ -21,8 +21,7 @@ "npx", "-y", "@shopify/dev-mcp@latest" - ], - "notes": "Imported from plugin bundle config `shopify/.mcp.json`." + ] }, "license": "MIT" } diff --git a/registry/mcps/shopify/entry.json b/registry/mcps/shopify/entry.json index af246c1..d662ad0 100644 --- a/registry/mcps/shopify/entry.json +++ b/registry/mcps/shopify/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://{shop}.myshopify.com/api/mcp" - ], - "notes": "Transport from source catalog: HTTP. Auth from source catalog: None for Storefront MCP. Server details: https://shopify.dev/docs/apps/build/storefront-mcp/servers/storefront" + ] }, "homepage": "https://shopify.dev/docs/apps/build/storefront-mcp" } diff --git a/registry/mcps/slack/entry.json b/registry/mcps/slack/entry.json index 39e9a94..d7da8cf 100644 --- a/registry/mcps/slack/entry.json +++ b/registry/mcps/slack/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.slack.com/mcp" - ], - "notes": "Imported from plugin bundle config `slack/.mcp.json`." + ] }, "homepage": "https://github.com/slackapi/slack-mcp-cursor-plugin", "license": "MIT" diff --git a/registry/mcps/sonarqube/entry.json b/registry/mcps/sonarqube/entry.json index acc0359..dba2083 100644 --- a/registry/mcps/sonarqube/entry.json +++ b/registry/mcps/sonarqube/entry.json @@ -22,7 +22,7 @@ "run", "mcp" ], - "notes": "Imported from plugin bundle config `sonarqube/mcp.json`. The `sonar` CLI must be available on PATH before starting this MCP server." + "notes": "The `sonar` CLI must be available on PATH before starting this MCP server." }, "homepage": "https://www.sonarsource.com", "repo": "https://github.com/SonarSource/sonarqube-agent-plugins", diff --git a/registry/mcps/sonatype-guide/entry.json b/registry/mcps/sonatype-guide/entry.json index 694b437..8c12f18 100644 --- a/registry/mcps/sonatype-guide/entry.json +++ b/registry/mcps/sonatype-guide/entry.json @@ -29,8 +29,7 @@ "required": true, "description": "Sonatype Guide value for sonatype guide token." } - ], - "notes": "Imported from plugin bundle config `sonatype-guide/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://guide.sonatype.com", "repo": "https://github.com/sonatype/guide-claude-plugin" diff --git a/registry/mcps/stripe/entry.json b/registry/mcps/stripe/entry.json index f8dae02..fea2bfc 100644 --- a/registry/mcps/stripe/entry.json +++ b/registry/mcps/stripe/entry.json @@ -22,8 +22,7 @@ "-y", "@stripe/mcp@latest", "--api-key=" - ], - "notes": "Transport from source catalog: HTTP. Auth from source catalog: OAuth or restricted API key. Official Stripe docs; local repo: https://github.com/stripe/ai/tree/main/tools/modelcontextprotocol" + ] }, "homepage": "https://docs.stripe.com/mcp" } diff --git a/registry/mcps/supabase/entry.json b/registry/mcps/supabase/entry.json index 10f5b39..a88a8d8 100644 --- a/registry/mcps/supabase/entry.json +++ b/registry/mcps/supabase/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.supabase.com/mcp" - ], - "notes": "Transport from source catalog: HTTP. Auth from source catalog: OAuth/DCR; PAT for CI. Official Supabase docs; local dev via Supabase CLI at http://localhost:54321/mcp." + ] }, "homepage": "https://supabase.com/docs/guides/ai-tools/mcp" } diff --git a/registry/mcps/terraform/entry.json b/registry/mcps/terraform/entry.json index a7046d9..9fec720 100644 --- a/registry/mcps/terraform/entry.json +++ b/registry/mcps/terraform/entry.json @@ -31,7 +31,6 @@ "required": true, "description": "Terraform value for tfe token." } - ], - "notes": "Imported from plugin bundle config `terraform/.mcp.json`." + ] } } diff --git a/registry/mcps/todoist/entry.json b/registry/mcps/todoist/entry.json index 761a78b..85fb3cb 100644 --- a/registry/mcps/todoist/entry.json +++ b/registry/mcps/todoist/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://ai.todoist.net/mcp" - ], - "notes": "Transport from source catalog: Streamable HTTP; local stdio via npm package; mcp-remote bridge supported. Auth from source catalog: OAuth for hosted MCP; TODOIST_API_KEY for local/direct tool use. Screenshot-only row. Official Doist repo; hosted MCP endpoint supports OAuth and can be bridged with npx -y mcp-remote https://ai.todoist.net/mcp." + ] }, "homepage": "https://github.com/doist/todoist-mcp", "repo": "https://github.com/doist/todoist-mcp" diff --git a/registry/mcps/twilio-docs/entry.json b/registry/mcps/twilio-docs/entry.json index abbd3b3..9a48b4f 100644 --- a/registry/mcps/twilio-docs/entry.json +++ b/registry/mcps/twilio-docs/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.twilio.com/docs" - ], - "notes": "Imported from plugin bundle config `twilio-developer-kit/mcp.json`." + ] }, "homepage": "https://www.twilio.com/docs", "repo": "https://github.com/twilio/ai", diff --git a/registry/mcps/twilio/entry.json b/registry/mcps/twilio/entry.json index 5d3a0a9..fa0f59b 100644 --- a/registry/mcps/twilio/entry.json +++ b/registry/mcps/twilio/entry.json @@ -39,8 +39,7 @@ "required": true, "description": "Twilio API secret." } - ], - "notes": "Transport from source catalog: stdio. Auth from source catalog: Twilio Account SID/API key/secret. Official Twilio Labs repo exposes Twilio APIs as MCP tools." + ] }, "homepage": "https://github.com/twilio-labs/mcp", "repo": "https://github.com/twilio-labs/mcp" diff --git a/registry/mcps/ui5/entry.json b/registry/mcps/ui5/entry.json index 6717128..54625d1 100644 --- a/registry/mcps/ui5/entry.json +++ b/registry/mcps/ui5/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "UI5", "tagline": "Connect Cline to UI5", - "description": "Connect Cline to UI5 through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to UI5 through this MCP server.", "author": { "name": "SAP" }, @@ -20,7 +20,6 @@ "npx", "-y", "@ui5/mcp-server" - ], - "notes": "Imported from plugin bundle config `ui5/.mcp.json`." + ] } } diff --git a/registry/mcps/valtown/entry.json b/registry/mcps/valtown/entry.json index e7abc6f..bfb6512 100644 --- a/registry/mcps/valtown/entry.json +++ b/registry/mcps/valtown/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://api.val.town/v3/mcp" - ], - "notes": "Imported from plugin bundle config `valtown/.mcp.json`." + ] }, "homepage": "https://val.town", "repo": "https://github.com/val-town/plugins", diff --git a/registry/mcps/vanta-aus/entry.json b/registry/mcps/vanta-aus/entry.json index 88ea9e2..9f378df 100644 --- a/registry/mcps/vanta-aus/entry.json +++ b/registry/mcps/vanta-aus/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.aus.vanta.com/mcp" - ], - "notes": "Imported from plugin bundle config `vanta/.mcp.json`." + ] }, "homepage": "https://github.com/VantaInc/vanta-mcp-plugin", "repo": "https://github.com/VantaInc/vanta-mcp-plugin", diff --git a/registry/mcps/vanta-eu/entry.json b/registry/mcps/vanta-eu/entry.json index 7139371..c8836d9 100644 --- a/registry/mcps/vanta-eu/entry.json +++ b/registry/mcps/vanta-eu/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.eu.vanta.com/mcp" - ], - "notes": "Imported from plugin bundle config `vanta/.mcp.json`." + ] }, "homepage": "https://github.com/VantaInc/vanta-mcp-plugin", "repo": "https://github.com/VantaInc/vanta-mcp-plugin", diff --git a/registry/mcps/vanta-us/entry.json b/registry/mcps/vanta-us/entry.json index 80da174..1a109e2 100644 --- a/registry/mcps/vanta-us/entry.json +++ b/registry/mcps/vanta-us/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.vanta.com/mcp" - ], - "notes": "Imported from plugin bundle config `vanta/.mcp.json`." + ] }, "homepage": "https://github.com/VantaInc/vanta-mcp-plugin", "repo": "https://github.com/VantaInc/vanta-mcp-plugin", diff --git a/registry/mcps/vercel/entry.json b/registry/mcps/vercel/entry.json index 7f3b1e1..dbdfccf 100644 --- a/registry/mcps/vercel/entry.json +++ b/registry/mcps/vercel/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.vercel.com" - ], - "notes": "Imported from plugin bundle config `vercel/.mcp.json`." + ] }, "repo": "https://github.com/vercel/vercel-plugin", "license": "Apache-2.0" diff --git a/registry/mcps/visualization/entry.json b/registry/mcps/visualization/entry.json index bff7667..d6f95cb 100644 --- a/registry/mcps/visualization/entry.json +++ b/registry/mcps/visualization/entry.json @@ -28,7 +28,6 @@ "required": true, "description": "Data Agent Kit Starter Pack value for data cloud curr ide name." } - ], - "notes": "Imported from plugin bundle config `data-agent-kit-starter-pack/.mcp.json`." + ] } } diff --git a/registry/mcps/webflow/entry.json b/registry/mcps/webflow/entry.json index 8f982cd..501fe3e 100644 --- a/registry/mcps/webflow/entry.json +++ b/registry/mcps/webflow/entry.json @@ -20,8 +20,7 @@ "--transport", "sse", "https://mcp.webflow.com/sse" - ], - "notes": "Transport from source catalog: SSE/HTTP. Auth from source catalog: OAuth remote; API token local. Official Webflow GitHub repo." + ] }, "homepage": "https://github.com/webflow/mcp-server", "repo": "https://github.com/webflow/mcp-server" diff --git a/registry/mcps/windsor-ai/entry.json b/registry/mcps/windsor-ai/entry.json index def88be..2c75468 100644 --- a/registry/mcps/windsor-ai/entry.json +++ b/registry/mcps/windsor-ai/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Windsor AI", "tagline": "Connect Cline to Windsor AI", - "description": "Connect Cline to Windsor AI through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Windsor AI through this MCP server.", "author": { "name": "Windsor.ai" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.windsor.ai" - ], - "notes": "Imported from plugin bundle config `windsor-ai/.mcp.json`." + ] }, "homepage": "https://windsor.ai", "repo": "https://github.com/windsor-ai/claude-windsor-ai-plugin", diff --git a/registry/mcps/wix/entry.json b/registry/mcps/wix/entry.json index c3c06a3..20ddc6b 100644 --- a/registry/mcps/wix/entry.json +++ b/registry/mcps/wix/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.wix.com/mcp" - ], - "notes": "Imported from plugin bundle config `wix/.mcp.json`." + ] }, "homepage": "https://dev.wix.com/docs/api-reference/articles/ai-tools/about-wix-skills", "repo": "https://github.com/wix/skills", diff --git a/registry/mcps/zapier/entry.json b/registry/mcps/zapier/entry.json index e0ea98a..84b910f 100644 --- a/registry/mcps/zapier/entry.json +++ b/registry/mcps/zapier/entry.json @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.zapier.com" - ], - "notes": "Transport from source catalog: HTTP. Auth from source catalog: API key or OAuth. Official Zapier repo; product page: https://zapier.com/mcp." + ] }, "homepage": "https://github.com/zapier/zapier-mcp", "repo": "https://github.com/zapier/zapier-mcp" diff --git a/registry/mcps/zoom-docs/entry.json b/registry/mcps/zoom-docs/entry.json index 4b0b28b..d268881 100644 --- a/registry/mcps/zoom-docs/entry.json +++ b/registry/mcps/zoom-docs/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Zoom Docs", "tagline": "Connect Cline to Zoom Docs", - "description": "Connect Cline to Zoom Docs through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Zoom Docs through this MCP server.", "author": { "name": "Zoom" }, @@ -29,8 +29,7 @@ "required": true, "description": "Zoom Docs value for zoom docs mcp access token." } - ], - "notes": "Imported from plugin bundle config `zoom-plugin/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://developers.zoom.us/", "repo": "https://github.com/zoom/zoom-plugin", diff --git a/registry/mcps/zoom-whiteboard/entry.json b/registry/mcps/zoom-whiteboard/entry.json index a00ca6e..92031bc 100644 --- a/registry/mcps/zoom-whiteboard/entry.json +++ b/registry/mcps/zoom-whiteboard/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "Zoom Whiteboard", "tagline": "Connect Cline to Zoom Whiteboard", - "description": "Connect Cline to Zoom Whiteboard through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to Zoom Whiteboard through this MCP server.", "author": { "name": "Zoom" }, @@ -28,8 +28,7 @@ "required": true, "description": "Zoom Whiteboard value for zoom whiteboard mcp access token." } - ], - "notes": "Imported from plugin bundle config `zoom-plugin/.mcp.json`. The remote server requires the configured HTTP header values at runtime." + ] }, "homepage": "https://developers.zoom.us/", "repo": "https://github.com/zoom/zoom-plugin", diff --git a/registry/mcps/zoom/entry.json b/registry/mcps/zoom/entry.json index eaaeaa8..2273353 100644 --- a/registry/mcps/zoom/entry.json +++ b/registry/mcps/zoom/entry.json @@ -19,8 +19,7 @@ "--transport", "http", "https://mcp.zoom.us/mcp/zoom/streamable" - ], - "notes": "Transport from source catalog: Streamable HTTP. Auth from source catalog: Zoom account/OAuth via remote MCP. Official Zoom GitHub registry metadata lists Zoom Workspace, Docs, Whiteboard, Revenue Accelerator, and Team Chat MCP remote URLs." + ] }, "homepage": "https://github.com/zoom/mcp-registry", "repo": "https://github.com/zoom/mcp-registry" diff --git a/registry/mcps/zoominfo/entry.json b/registry/mcps/zoominfo/entry.json index 6b70ba7..c8e4564 100644 --- a/registry/mcps/zoominfo/entry.json +++ b/registry/mcps/zoominfo/entry.json @@ -4,7 +4,7 @@ "type": "mcp", "name": "ZoomInfo", "tagline": "Connect Cline to ZoomInfo", - "description": "Connect Cline to ZoomInfo through this MCP server configuration from the imported plugin marketplace bundle.", + "description": "Connect Cline to ZoomInfo through this MCP server.", "author": { "name": "ZoomInfo" }, @@ -20,8 +20,7 @@ "--transport", "http", "https://mcp.zoominfo.com/mcp" - ], - "notes": "Imported from plugin bundle config `zoominfo/.mcp.json`." + ] }, "homepage": "https://www.zoominfo.com", "repo": "https://github.com/Zoominfo/zoominfo-mcp-plugin", diff --git a/registry/mcps/zscaler/entry.json b/registry/mcps/zscaler/entry.json index 4e72a40..ecdd730 100644 --- a/registry/mcps/zscaler/entry.json +++ b/registry/mcps/zscaler/entry.json @@ -42,6 +42,6 @@ "description": "Zscaler value for zscaler vanity domain." } ], - "notes": "Imported from plugin bundle config `zscaler/mcp.json`. The `zscaler-mcp-server` CLI must be available on PATH before starting this MCP server." + "notes": "The `zscaler-mcp-server` CLI must be available on PATH before starting this MCP server." } }