octocode-mcp 9.2.0 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +178 -18
- package/manifest.json +1 -1
- package/package.json +7 -7
- package/server.json +2 -2
package/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"dxt_version": "0.1",
|
|
3
3
|
"name": "octocode-mcp",
|
|
4
4
|
"display_name": "Octocode MCP Extension",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "10.0.0",
|
|
6
6
|
"description": "GitHub code search and npm package exploration MCP server",
|
|
7
7
|
"long_description": "A comprehensive MCP server that provides GitHub code search, repository exploration, commit history, pull requests, issues, and npm package search capabilities. This extension enables AI assistants to efficiently search and analyze code across GitHub repositories and npm packages with advanced filtering and content retrieval features.",
|
|
8
8
|
"author": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "octocode-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for advanced GitHub repository analysis and code discovery. Provides AI assistants with powerful tools to search, analyze, and understand codebases across GitHub.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"eslint-config-prettier": "^10.1.5",
|
|
68
68
|
"eslint-plugin-prettier": "^5.5.4",
|
|
69
69
|
"prettier": "^3.5.3",
|
|
70
|
+
"tsdown": "^0.17.2",
|
|
70
71
|
"tslib": "^2.8.1",
|
|
71
|
-
"tsup": "^8.4.0",
|
|
72
72
|
"typescript": "^5.9.3",
|
|
73
73
|
"vitest": "^4.0.13"
|
|
74
74
|
},
|
|
75
75
|
"engines": {
|
|
76
|
-
"node": ">=
|
|
76
|
+
"node": ">=18.0.0"
|
|
77
77
|
},
|
|
78
78
|
"exports": {
|
|
79
79
|
".": {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
"mcpName": "io.github.bgauryy/octocode-mcp",
|
|
96
96
|
"scripts": {
|
|
97
|
-
"build": "yarn lint && yarn clean &&
|
|
97
|
+
"build": "yarn lint && yarn clean && tsdown",
|
|
98
98
|
"build:bin": "bun build ./src/index.ts --compile --minify --sourcemap --outfile dist/octocode-mcp",
|
|
99
99
|
"build:bin:all": "bun run build:bin:linux-x64 && bun run build:bin:linux-arm64 && bun run build:bin:linux-x64-musl && bun run build:bin:darwin-arm64 && bun run build:bin:darwin-x64 && bun run build:bin:windows-x64",
|
|
100
100
|
"build:bin:darwin-arm64": "bun build ./src/index.ts --compile --minify --sourcemap --target=bun-darwin-arm64 --outfile dist/octocode-mcp-darwin-arm64",
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
"build:bin:linux-x64": "bun build ./src/index.ts --compile --minify --sourcemap --target=bun-linux-x64 --outfile dist/octocode-mcp-linux-x64",
|
|
104
104
|
"build:bin:linux-x64-musl": "bun build ./src/index.ts --compile --minify --sourcemap --target=bun-linux-x64-musl --outfile dist/octocode-mcp-linux-x64-musl",
|
|
105
105
|
"build:bin:windows-x64": "bun build ./src/index.ts --compile --minify --sourcemap --target=bun-windows-x64 --outfile dist/octocode-mcp-windows-x64.exe",
|
|
106
|
-
"build:dev": "yarn clean &&
|
|
107
|
-
"build:watch": "
|
|
106
|
+
"build:dev": "yarn clean && tsdown",
|
|
107
|
+
"build:watch": "tsdown --watch",
|
|
108
108
|
"clean": "rm -rf dist/",
|
|
109
109
|
"debug": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
110
110
|
"dxt:pack": "yarn build && dxt pack . octocode-mcp.dxt",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"lint": "eslint src/**/*.ts tests/**/*.ts",
|
|
116
116
|
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
|
|
117
117
|
"prepack": "yarn build",
|
|
118
|
-
"prepublishOnly": "yarn lint && yarn test &&
|
|
118
|
+
"prepublishOnly": "yarn lint && yarn test && tsdown",
|
|
119
119
|
"test": "vitest run --coverage",
|
|
120
120
|
"test:coverage": "vitest run --coverage",
|
|
121
121
|
"test:quiet": "vitest run --reporter=dot --silent",
|
package/server.json
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"url": "https://github.com/bgauryy/octocode-mcp",
|
|
9
9
|
"source": "github"
|
|
10
10
|
},
|
|
11
|
-
"version": "
|
|
11
|
+
"version": "10.0.0",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "octocode-mcp",
|
|
16
|
-
"version": "
|
|
16
|
+
"version": "10.0.0",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|