@upstash/context7-mcp
Version:
MCP server for Context7
59 lines • 1.76 kB
JSON
{
"name": "@upstash/context7-mcp",
"version": "1.0.33",
"mcpName": "io.github.upstash/context7",
"description": "MCP server for Context7",
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/context7.git",
"directory": "packages/mcp"
},
"keywords": [
"modelcontextprotocol",
"mcp",
"context7",
"vibe-coding",
"developer tools",
"documentation",
"context"
],
"author": "abdush",
"license": "MIT",
"type": "module",
"bin": {
"context7-mcp": "dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"bugs": {
"url": "https://github.com/upstash/context7/issues"
},
"homepage": "https://github.com/upstash/context7#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"@types/express": "^5.0.4",
"commander": "^14.0.0",
"express": "^5.1.0",
"undici": "^6.6.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.14",
"typescript": "^5.8.2"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"test": "echo \"No tests yet\"",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:check": "eslint .",
"format": "prettier --write .",
"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 && mv mcpb/.mcpbignore .mcpbignore && mv mcpb/manifest.json manifest.json && mv public/icon.png icon.png && mcpb validate manifest.json && mcpb pack . mcpb/context7.mcpb && mv manifest.json mcpb/manifest.json && mv .mcpbignore mcpb/.mcpbignore && mv icon.png public/icon.png && bun install"
}
}