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/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.
|
||||
Reference in New Issue
Block a user