octocode-mcp 7.0.8 → 7.0.9-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octocode-mcp",
3
- "version": "7.0.8",
3
+ "version": "7.0.9-alpha.2",
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",
@@ -33,6 +33,7 @@
33
33
  },
34
34
  "bugs": "https://github.com/bgauryy/octocode-mcp/issues",
35
35
  "license": "MIT",
36
+ "mcpName": "io.github.bgauryy/octocode-mcp",
36
37
  "bin": {
37
38
  "octocode-mcp": "dist/index.js",
38
39
  "octocode-mcp-beta": "dist/index.js"
@@ -80,7 +81,9 @@
80
81
  "files": [
81
82
  "dist/**/*.js",
82
83
  "dist/**/*.d.ts",
83
- "manifest.json"
84
+ "manifest.json",
85
+ "server.json",
86
+ "LICENSE"
84
87
  ],
85
88
  "main": "dist/index.js",
86
89
  "types": "dist/src/index.d.ts",
@@ -109,5 +112,6 @@
109
112
  "type": "stdio",
110
113
  "command": "octocode-mcp",
111
114
  "args": []
112
- }
113
- }
115
+ },
116
+ "stableVersion": "7.0.9"
117
+ }
package/server.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3
+ "name": "io.github.bgauryy/octocode-mcp",
4
+ "title": "Octocode MCP - AI Context Platform",
5
+ "description": "AI code research platform. Search, analyze, and extract insights from any GitHub repository.",
6
+ "status": "active",
7
+ "repository": {
8
+ "url": "https://github.com/bgauryy/octocode-mcp",
9
+ "source": "github"
10
+ },
11
+ "version": "7.0.9",
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "identifier": "octocode-mcp",
16
+ "version": "7.0.9",
17
+ "transport": {
18
+ "type": "stdio"
19
+ },
20
+ "environmentVariables": [
21
+ {
22
+ "name": "GITHUB_TOKEN",
23
+ "description": "GitHub Personal Access Token. Optional - authenticate via GitHub CLI (gh auth login) for automatic token management, or set this token manually for CI/CD environments.",
24
+ "isRequired": false,
25
+ "isSecret": true
26
+ }
27
+ ]
28
+ }
29
+ ]
30
+ }
31
+
File without changes