Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 35 additions & 5 deletions packages/mcp/mcpb/.mcpbignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,39 @@
schema/context7.json
# npx-based bundle - exclude all source code
# Only manifest.json and icon.png are needed

# Source and build
*.ts
*.js
dist/
src/
node_modules/

# Config files
*.json
!manifest.json
*.yaml
*.mjs
tsconfig.json
eslint.config.js
prettier.config.mjs
smithery.yaml
Dockerfile
eslint.config.js

# Documentation
*.md
*.ts
LICENSE
public/*

# Docker
Dockerfile

# Schema
schema/

# Public assets (icon is copied separately)
public/*

# Package files
package.json
pnpm-lock.yaml

# Old bundle
*.mcpb
Binary file modified packages/mcp/mcpb/context7.mcpb
Binary file not shown.
Binary file added packages/mcp/mcpb/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions packages/mcp/mcpb/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"dxt_version": "0.1",
"manifest_version": "0.3",
"name": "context7",
"display_name": "Context7",
"version": "2.0.0",
"version": "2.1.0",
"description": "Up-to-date Code Docs For Any Prompt",
"long_description": "Context7 MCP pulls up-to-date, version-specific documentation and code examples straight from the source — and places them directly into your prompt.",
"author": {
Expand All @@ -12,13 +12,15 @@
},
"homepage": "https://context7.com",
"documentation": "https://github.com/upstash/context7",
"support": "https://github.com/upstash/context7/issues",
"privacy_policies": ["https://upstash.com/privacy"],
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.js"],
"command": "npx",
"args": ["-y", "--package=@upstash/context7-mcp", "context7-mcp"],
"env": {}
}
},
Expand Down