octocode-mcp 2.3.1 → 2.3.2

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.
Files changed (2) hide show
  1. package/build/index.js +434 -390
  2. package/package.json +27 -27
package/package.json CHANGED
@@ -1,30 +1,7 @@
1
1
  {
2
2
  "name": "octocode-mcp",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Model Context Protocol (MCP) server for advanced GitHub repository analysis, code discovery, and npm package exploration. Provides AI assistants with powerful tools to search, analyze, and understand codebases across GitHub and npm ecosystems.",
5
- "keywords": [
6
- "mcp",
7
- "model-context-protocol",
8
- "github",
9
- "github-api",
10
- "code-analysis",
11
- "code-search",
12
- "repository-analysis",
13
- "npm",
14
- "npm-search",
15
- "developer-tools",
16
- "ai-tools",
17
- "claude",
18
- "openai",
19
- "anthropic",
20
- "code-discovery",
21
- "codebase-exploration",
22
- "github-search",
23
- "semantic-search",
24
- "typescript",
25
- "nodejs",
26
- "cli-tool"
27
- ],
28
5
  "author": "Guy Bary <guybary@gmail.com>",
29
6
  "homepage": "https://github.com/bgauryy/octocode-mcp#readme",
30
7
  "repository": {
@@ -42,9 +19,9 @@
42
19
  "type": "module",
43
20
  "bin": "./build/index.js",
44
21
  "scripts": {
45
- "build": "yarn lint && yarn test && rollup -c",
22
+ "build": "yarn lint && rollup -c",
46
23
  "build:watch": "rollup -c --watch",
47
- "prepublishOnly": "yarn build",
24
+ "prepublishOnly": "yarn lint && yarn test && rollup -c",
48
25
  "test": "vitest run",
49
26
  "test:watch": "vitest --watch",
50
27
  "test:coverage": "vitest run --coverage",
@@ -84,5 +61,28 @@
84
61
  "tslib": "^2.8.1",
85
62
  "typescript": "^5.8.3",
86
63
  "vitest": "^2.1.5"
87
- }
64
+ },
65
+ "keywords": [
66
+ "mcp",
67
+ "model-context-protocol",
68
+ "github",
69
+ "github-api",
70
+ "code-analysis",
71
+ "code-search",
72
+ "repository-analysis",
73
+ "npm",
74
+ "npm-search",
75
+ "developer-tools",
76
+ "ai-tools",
77
+ "claude",
78
+ "openai",
79
+ "anthropic",
80
+ "code-discovery",
81
+ "codebase-exploration",
82
+ "github-search",
83
+ "semantic-search",
84
+ "typescript",
85
+ "nodejs",
86
+ "cli-tool"
87
+ ]
88
88
  }