Skip to content
Merged
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
26 changes: 21 additions & 5 deletions packages/mcp/mcpb/.mcpbignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
schema/context7.json
# Source (dist/ is sufficient)
src/
*.ts

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

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

# Docker
Dockerfile

# Schema
schema/

# Assets (icon is copied to root)
public/*

# MCPB meta (avoid nesting)
mcpb/
Binary file modified packages/mcp/mcpb/context7.mcpb
Binary file not shown.
6 changes: 4 additions & 2 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,6 +12,8 @@
},
"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",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"format:check": "prettier --check .",
"dev": "tsc --watch",
"start": "node dist/index.js --transport http",
"pack-mcpb": "pnpm install && pnpm run build && rm -rf node_modules && pnpm install --prod && cp mcpb/manifest.json manifest.json && cp ../../public/icon.png icon.png && mcpb validate manifest.json && mcpb pack . mcpb/context7.mcpb && rm manifest.json icon.png && pnpm install"
"pack-mcpb": "pnpm install && pnpm run build && rm -rf node_modules && pnpm install --prod && cp mcpb/manifest.json manifest.json && cp mcpb/.mcpbignore .mcpbignore && cp ../../public/icon.png icon.png && mcpb validate manifest.json && mcpb pack . mcpb/context7.mcpb && rm manifest.json .mcpbignore icon.png && pnpm install"
},
"repository": {
"type": "git",
Expand Down