mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-01-31 20:03:36 +00:00
creating intital scaffolding for claude code plugins
This commit is contained in:
8
external_plugins/asana/.claude-plugin/plugin.json
Normal file
8
external_plugins/asana/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "asana",
|
||||
"description": "Asana project management integration. Create and manage tasks, search projects, update assignments, track progress, and integrate your development workflow with Asana's work management platform.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Asana"
|
||||
}
|
||||
}
|
||||
6
external_plugins/asana/.mcp.json
Normal file
6
external_plugins/asana/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"asana": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.asana.com/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/asana/README.md
Normal file
15
external_plugins/asana/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Asana Plugin
|
||||
|
||||
Asana project management integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Create and manage tasks, search projects, update assignments, track progress, and integrate your development workflow with Asana's work management platform.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Asana account.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Asana Connector](https://www.claude.com/connectors/asana) for more information.
|
||||
8
external_plugins/atlassian/.claude-plugin/plugin.json
Normal file
8
external_plugins/atlassian/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "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.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Atlassian"
|
||||
}
|
||||
}
|
||||
6
external_plugins/atlassian/.mcp.json
Normal file
6
external_plugins/atlassian/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"atlassian": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.atlassian.com/v1/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/atlassian/README.md
Normal file
15
external_plugins/atlassian/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Atlassian Plugin
|
||||
|
||||
Atlassian integration (Jira & Confluence) for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
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.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Atlassian account.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Atlassian Connector](https://www.claude.com/connectors/atlassian) for more information.
|
||||
8
external_plugins/context7/.claude-plugin/plugin.json
Normal file
8
external_plugins/context7/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "context7",
|
||||
"description": "Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Upstash"
|
||||
}
|
||||
}
|
||||
6
external_plugins/context7/.mcp.json
Normal file
6
external_plugins/context7/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"context7": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "@upstash/context7-mcp"]
|
||||
}
|
||||
}
|
||||
41
external_plugins/context7/README.md
Normal file
41
external_plugins/context7/README.md
Normal file
@@ -0,0 +1,41 @@
|
||||
# Context7 Plugin
|
||||
|
||||
Upstash Context7 MCP server for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Pull up-to-date, version-specific documentation and code examples directly from source repositories into your LLM context. Add "use context7" to prompts to fetch relevant documentation.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js >= v18.0.0
|
||||
|
||||
## Optional: API Key for Higher Rate Limits
|
||||
|
||||
For higher rate limits and private repository access, get an API key and configure:
|
||||
|
||||
```json
|
||||
{
|
||||
"context7": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Or use the remote server:
|
||||
```json
|
||||
{
|
||||
"context7": {
|
||||
"type": "http",
|
||||
"url": "https://mcp.context7.com/mcp",
|
||||
"headers": {
|
||||
"Authorization": "Bearer YOUR_API_KEY"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Context7 GitHub](https://github.com/upstash/context7) for detailed documentation.
|
||||
8
external_plugins/figma/.claude-plugin/plugin.json
Normal file
8
external_plugins/figma/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "figma",
|
||||
"description": "Figma design platform integration. Access design files, extract component information, read design tokens, and translate designs into code. Bridge the gap between design and development workflows.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Figma"
|
||||
}
|
||||
}
|
||||
6
external_plugins/figma/.mcp.json
Normal file
6
external_plugins/figma/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"figma": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.figma.com/v1/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/figma/README.md
Normal file
15
external_plugins/figma/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Figma Plugin
|
||||
|
||||
Figma design platform integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Access design files, extract component information, read design tokens, and translate designs into code. Bridge the gap between design and development workflows.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Figma account.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Figma Connector](https://www.claude.com/connectors/figma) for more information.
|
||||
8
external_plugins/firebase/.claude-plugin/plugin.json
Normal file
8
external_plugins/firebase/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "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.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Google"
|
||||
}
|
||||
}
|
||||
6
external_plugins/firebase/.mcp.json
Normal file
6
external_plugins/firebase/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"firebase": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "firebase-tools@latest", "mcp"]
|
||||
}
|
||||
}
|
||||
32
external_plugins/firebase/README.md
Normal file
32
external_plugins/firebase/README.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# Firebase Plugin
|
||||
|
||||
Google Firebase MCP integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Manage Firestore databases, authentication, cloud functions, hosting, and storage. Build and manage your Firebase backend directly from your development workflow.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js installed
|
||||
- Firebase CLI credentials (logged in via `firebase login` or Application Default Credentials)
|
||||
|
||||
## Optional Configuration
|
||||
|
||||
Add arguments to customize behavior:
|
||||
- `--dir ABSOLUTE_DIR_PATH` - Set project context directory
|
||||
- `--only FEATURE_1,FEATURE_2` - Limit exposed tools (comma-separated)
|
||||
|
||||
Example with options:
|
||||
```json
|
||||
{
|
||||
"firebase": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "firebase-tools@latest", "mcp", "--dir", "/path/to/project", "--only", "auth,firestore"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Firebase MCP Documentation](https://firebase.google.com/docs/ai-assistance/mcp-server) for detailed setup instructions.
|
||||
8
external_plugins/github/.claude-plugin/plugin.json
Normal file
8
external_plugins/github/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "github",
|
||||
"description": "Official GitHub MCP server for repository management. Create issues, manage pull requests, review code, search repositories, and interact with GitHub's full API directly from Claude Code.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "GitHub"
|
||||
}
|
||||
}
|
||||
9
external_plugins/github/.mcp.json
Normal file
9
external_plugins/github/.mcp.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"github": {
|
||||
"type": "http",
|
||||
"url": "https://api.githubcopilot.com/mcp/",
|
||||
"headers": {
|
||||
"Authorization": "Bearer ${GITHUB_PERSONAL_ACCESS_TOKEN}"
|
||||
}
|
||||
}
|
||||
}
|
||||
38
external_plugins/github/README.md
Normal file
38
external_plugins/github/README.md
Normal file
@@ -0,0 +1,38 @@
|
||||
# GitHub Plugin
|
||||
|
||||
Official GitHub MCP server for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Create issues, manage pull requests, review code, search repositories, and interact with GitHub's full API directly from Claude Code.
|
||||
|
||||
## Setup
|
||||
|
||||
1. Create a GitHub Personal Access Token with appropriate scopes
|
||||
2. Set the environment variable:
|
||||
```bash
|
||||
export GITHUB_PERSONAL_ACCESS_TOKEN=your-token-here
|
||||
```
|
||||
|
||||
## Required Environment Variables
|
||||
|
||||
- `GITHUB_PERSONAL_ACCESS_TOKEN` - Your GitHub PAT with appropriate scopes
|
||||
|
||||
## Alternative: Docker Setup
|
||||
|
||||
For local server deployment:
|
||||
```json
|
||||
{
|
||||
"github": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"],
|
||||
"env": {
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [GitHub MCP Server](https://github.com/github/github-mcp-server) for detailed documentation.
|
||||
8
external_plugins/gitlab/.claude-plugin/plugin.json
Normal file
8
external_plugins/gitlab/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "gitlab",
|
||||
"description": "GitLab DevOps platform integration. Manage repositories, merge requests, CI/CD pipelines, issues, and wikis. Full access to GitLab's comprehensive DevOps lifecycle tools.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "GitLab"
|
||||
}
|
||||
}
|
||||
6
external_plugins/gitlab/.mcp.json
Normal file
6
external_plugins/gitlab/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"gitlab": {
|
||||
"type": "http",
|
||||
"url": "https://gitlab.com/api/v4/mcp"
|
||||
}
|
||||
}
|
||||
39
external_plugins/gitlab/README.md
Normal file
39
external_plugins/gitlab/README.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# GitLab Plugin
|
||||
|
||||
GitLab DevOps platform integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Manage repositories, merge requests, CI/CD pipelines, issues, and wikis. Full access to GitLab's comprehensive DevOps lifecycle tools.
|
||||
|
||||
## Setup
|
||||
|
||||
The default configuration uses GitLab.com. For self-hosted GitLab instances, modify the URL in `.mcp.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"gitlab": {
|
||||
"type": "http",
|
||||
"url": "https://your-gitlab-instance.com/api/v4/mcp"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js 20+ (for stdio transport alternative)
|
||||
|
||||
## Alternative: stdio Transport
|
||||
|
||||
```json
|
||||
{
|
||||
"gitlab": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "mcp-remote", "https://gitlab.com/api/v4/mcp"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [GitLab MCP Documentation](https://docs.gitlab.com/user/gitlab_duo/model_context_protocol/mcp_server/) for detailed setup instructions.
|
||||
8
external_plugins/greptile/.claude-plugin/plugin.json
Normal file
8
external_plugins/greptile/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "greptile",
|
||||
"description": "AI-powered codebase search and understanding. Query your repositories using natural language to find relevant code, understand dependencies, and get contextual answers about your codebase architecture.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Greptile"
|
||||
}
|
||||
}
|
||||
9
external_plugins/greptile/.mcp.json
Normal file
9
external_plugins/greptile/.mcp.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"greptile": {
|
||||
"type": "http",
|
||||
"url": "https://api.greptile.com/mcp",
|
||||
"headers": {
|
||||
"Authorization": "Bearer ${GREPTILE_API_KEY}"
|
||||
}
|
||||
}
|
||||
}
|
||||
23
external_plugins/greptile/README.md
Normal file
23
external_plugins/greptile/README.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Greptile Plugin
|
||||
|
||||
AI-powered codebase search and understanding for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Greptile enables natural language queries across your repositories to find relevant code, understand dependencies, and get contextual answers about your codebase architecture.
|
||||
|
||||
## Setup
|
||||
|
||||
1. Get your API key from [app.greptile.com](https://app.greptile.com)
|
||||
2. Set the environment variable:
|
||||
```bash
|
||||
export GREPTILE_API_KEY=your-api-key-here
|
||||
```
|
||||
|
||||
## Required Environment Variables
|
||||
|
||||
- `GREPTILE_API_KEY` - Your Greptile API key
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Greptile MCP Documentation](https://www.greptile.com/docs/mcp/setup-ides) for detailed setup instructions.
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "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.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Laravel"
|
||||
}
|
||||
}
|
||||
6
external_plugins/laravel-boost/.mcp.json
Normal file
6
external_plugins/laravel-boost/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"laravel-boost": {
|
||||
"command": "php",
|
||||
"args": ["artisan", "boost:mcp"]
|
||||
}
|
||||
}
|
||||
26
external_plugins/laravel-boost/README.md
Normal file
26
external_plugins/laravel-boost/README.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# Laravel Boost Plugin
|
||||
|
||||
Laravel development toolkit MCP server for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Provides over 15 specialized tools for Laravel development including Artisan commands, Eloquent queries, routing, migrations, and framework-specific code generation.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Laravel project with Boost installed
|
||||
- PHP installed
|
||||
|
||||
## Setup
|
||||
|
||||
1. Install Laravel Boost in your project:
|
||||
```bash
|
||||
composer require laravel/boost
|
||||
php artisan boost:install
|
||||
```
|
||||
|
||||
2. The MCP server is automatically registered during installation
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Laravel Boost GitHub](https://github.com/laravel/boost) for detailed documentation.
|
||||
8
external_plugins/linear/.claude-plugin/plugin.json
Normal file
8
external_plugins/linear/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "linear",
|
||||
"description": "Linear issue tracking integration. Create issues, manage projects, update statuses, search across workspaces, and streamline your software development workflow with Linear's modern issue tracker.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Linear"
|
||||
}
|
||||
}
|
||||
6
external_plugins/linear/.mcp.json
Normal file
6
external_plugins/linear/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"linear": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.linear.app/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/linear/README.md
Normal file
15
external_plugins/linear/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Linear Plugin
|
||||
|
||||
Linear issue tracking integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Create issues, manage projects, update statuses, search across workspaces, and streamline your software development workflow with Linear's modern issue tracker.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Linear account.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Linear Connector](https://www.claude.com/connectors/linear) for more information.
|
||||
8
external_plugins/notion/.claude-plugin/plugin.json
Normal file
8
external_plugins/notion/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "notion",
|
||||
"description": "Notion workspace integration. Search pages, create and update documents, manage databases, and access your team's knowledge base directly from Claude Code for seamless documentation workflows.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Notion"
|
||||
}
|
||||
}
|
||||
6
external_plugins/notion/.mcp.json
Normal file
6
external_plugins/notion/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"notion": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.notion.com/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/notion/README.md
Normal file
15
external_plugins/notion/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Notion Plugin
|
||||
|
||||
Notion workspace integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Search pages, create and update documents, manage databases, and access your team's knowledge base directly from Claude Code for seamless documentation workflows.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Notion workspace.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Notion Connector](https://www.claude.com/connectors/notion) for more information.
|
||||
8
external_plugins/playwright/.claude-plugin/plugin.json
Normal file
8
external_plugins/playwright/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "playwright",
|
||||
"description": "Browser automation and end-to-end testing MCP server by Microsoft. Enables Claude to interact with web pages, take screenshots, fill forms, click elements, and perform automated browser testing workflows.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Microsoft"
|
||||
}
|
||||
}
|
||||
6
external_plugins/playwright/.mcp.json
Normal file
6
external_plugins/playwright/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"playwright": {
|
||||
"command": "npx",
|
||||
"args": ["@playwright/mcp@latest"]
|
||||
}
|
||||
}
|
||||
22
external_plugins/playwright/README.md
Normal file
22
external_plugins/playwright/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# Playwright Plugin
|
||||
|
||||
Browser automation and end-to-end testing MCP server for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Enables Claude to interact with web pages, take screenshots, fill forms, click elements, and perform automated browser testing workflows.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js installed
|
||||
|
||||
## Optional Configuration
|
||||
|
||||
Add arguments to customize behavior:
|
||||
- `--browser` - Specify browser type (chrome, firefox, webkit, msedge)
|
||||
- `--headless` - Run in headless mode
|
||||
- `--viewport-size` - Browser dimensions (e.g., "1280x720")
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Playwright MCP GitHub](https://github.com/microsoft/playwright-mcp) for detailed documentation.
|
||||
8
external_plugins/sentry/.claude-plugin/plugin.json
Normal file
8
external_plugins/sentry/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "sentry",
|
||||
"description": "Sentry error monitoring integration. Access error reports, analyze stack traces, search issues by fingerprint, and debug production errors directly from your development environment.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Sentry"
|
||||
}
|
||||
}
|
||||
6
external_plugins/sentry/.mcp.json
Normal file
6
external_plugins/sentry/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"sentry": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.sentry.dev/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/sentry/README.md
Normal file
15
external_plugins/sentry/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Sentry Plugin
|
||||
|
||||
Sentry error monitoring integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Access error reports, analyze stack traces, search issues by fingerprint, and debug production errors directly from your development environment.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Sentry account.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Sentry Connector](https://www.claude.com/connectors/sentry) for more information.
|
||||
8
external_plugins/serena/.claude-plugin/plugin.json
Normal file
8
external_plugins/serena/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "serena",
|
||||
"description": "Semantic code analysis MCP server providing intelligent code understanding, refactoring suggestions, and codebase navigation through language server protocol integration.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Oraios"
|
||||
}
|
||||
}
|
||||
6
external_plugins/serena/.mcp.json
Normal file
6
external_plugins/serena/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"serena": {
|
||||
"command": "uvx",
|
||||
"args": ["--from", "git+https://github.com/oraios/serena", "serena", "start-mcp-server"]
|
||||
}
|
||||
}
|
||||
22
external_plugins/serena/README.md
Normal file
22
external_plugins/serena/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# Serena Plugin
|
||||
|
||||
Semantic code analysis MCP server for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Serena provides intelligent code understanding, refactoring suggestions, and codebase navigation through language server protocol integration.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Python with `uv` package manager installed
|
||||
|
||||
## Setup
|
||||
|
||||
The plugin automatically runs via `uvx`. Ensure you have `uv` installed:
|
||||
```bash
|
||||
pip install uv
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Serena GitHub Repository](https://github.com/oraios/serena) for detailed documentation.
|
||||
8
external_plugins/slack/.claude-plugin/plugin.json
Normal file
8
external_plugins/slack/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "slack",
|
||||
"description": "Slack workspace integration. Search messages, access channels, read threads, and stay connected with your team's communications while coding. Find relevant discussions and context quickly.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Slack"
|
||||
}
|
||||
}
|
||||
6
external_plugins/slack/.mcp.json
Normal file
6
external_plugins/slack/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"slack": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.slack.com/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/slack/README.md
Normal file
15
external_plugins/slack/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Slack Plugin
|
||||
|
||||
Slack workspace integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Search messages, access channels, read threads, and stay connected with your team's communications while coding. Find relevant discussions and context quickly.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Slack workspace.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Slack Connector](https://www.claude.com/connectors/slack) for more information.
|
||||
8
external_plugins/supabase/.claude-plugin/plugin.json
Normal file
8
external_plugins/supabase/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "supabase",
|
||||
"description": "Supabase MCP integration for database operations, authentication, storage, and real-time subscriptions. Manage your Supabase projects, run SQL queries, and interact with your backend directly.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Supabase"
|
||||
}
|
||||
}
|
||||
6
external_plugins/supabase/.mcp.json
Normal file
6
external_plugins/supabase/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"supabase": {
|
||||
"type": "http",
|
||||
"url": "https://mcp.supabase.com/mcp"
|
||||
}
|
||||
}
|
||||
21
external_plugins/supabase/README.md
Normal file
21
external_plugins/supabase/README.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Supabase Plugin
|
||||
|
||||
Supabase MCP integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Manage your Supabase projects, run SQL queries, handle authentication, storage, and real-time subscriptions directly from Claude Code.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via dynamic client registration in most cases.
|
||||
|
||||
## Optional: CI Environment Configuration
|
||||
|
||||
For CI environments, set these environment variables:
|
||||
- `SUPABASE_PROJECT_REF` - Your Supabase project reference
|
||||
- `SUPABASE_ACCESS_TOKEN` - Personal access token with appropriate scopes
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Supabase MCP Documentation](https://supabase.com/docs/guides/getting-started/mcp) for detailed setup instructions.
|
||||
8
external_plugins/vercel/.claude-plugin/plugin.json
Normal file
8
external_plugins/vercel/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "vercel",
|
||||
"description": "Vercel deployment platform integration. Manage deployments, check build status, access logs, configure domains, and control your frontend infrastructure directly from Claude Code.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Vercel"
|
||||
}
|
||||
}
|
||||
6
external_plugins/vercel/.mcp.json
Normal file
6
external_plugins/vercel/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"vercel": {
|
||||
"type": "sse",
|
||||
"url": "https://mcp.vercel.com/sse"
|
||||
}
|
||||
}
|
||||
15
external_plugins/vercel/README.md
Normal file
15
external_plugins/vercel/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Vercel Plugin
|
||||
|
||||
Vercel deployment platform integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Manage deployments, check build status, access logs, configure domains, and control your frontend infrastructure directly from Claude Code.
|
||||
|
||||
## Setup
|
||||
|
||||
Authentication is handled automatically via OAuth when you first use the plugin. You will be prompted to authorize access to your Vercel account.
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Vercel Connector](https://www.claude.com/connectors) for more information.
|
||||
Reference in New Issue
Block a user