octocode-mcp 2.3.13 → 2.3.16
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/README.md +60 -2
- package/assets/langchainTutorial.gif +0 -0
- package/assets/logo.png +0 -0
- package/assets/reactVSVueJS.gif +0 -0
- package/assets/reactZustand.gif +0 -0
- package/{build → dist}/index.js +545 -162
- package/manifest.json +110 -0
- package/package.json +19 -7
package/manifest.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dxt_version": "0.1",
|
|
3
|
+
"name": "octocode-mcp",
|
|
4
|
+
"display_name": "Octocode MCP Extension",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"description": "GitHub code search and npm package exploration MCP server",
|
|
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
|
+
"author": {
|
|
9
|
+
"name": "Octocode Team",
|
|
10
|
+
"email": "support@octocode.dev",
|
|
11
|
+
"url": "https://github.com/octocode-dev"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/guybary/octocode-mcp"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/guybary/octocode-mcp",
|
|
18
|
+
"documentation": "https://github.com/guybary/octocode-mcp#readme",
|
|
19
|
+
"support": "https://github.com/guybary/octocode-mcp/issues",
|
|
20
|
+
"icon": "assets/logo.png",
|
|
21
|
+
"server": {
|
|
22
|
+
"type": "node",
|
|
23
|
+
"entry_point": "dist/index.js",
|
|
24
|
+
"mcp_config": {
|
|
25
|
+
"command": "node",
|
|
26
|
+
"args": ["${__dirname}/dist/index.js"],
|
|
27
|
+
"env": {
|
|
28
|
+
"NODE_ENV": "production"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"tools": [
|
|
33
|
+
{
|
|
34
|
+
"name": "mcp_octocode_apiStatusCheck",
|
|
35
|
+
"description": "Check GitHub and npm login status"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "mcp_octocode_githubSearchCode",
|
|
39
|
+
"description": "Search code across GitHub repositories"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "mcp_octocode_githubGetFileContent",
|
|
43
|
+
"description": "Fetch file content from GitHub repositories"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "mcp_octocode_githubSearchRepositories",
|
|
47
|
+
"description": "Search GitHub repositories"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "mcp_octocode_githubSearchCommits",
|
|
51
|
+
"description": "Search commit history across GitHub repositories"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "mcp_octocode_githubSearchPullRequests",
|
|
55
|
+
"description": "Search GitHub pull requests"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "mcp_octocode_githubSearchIssues",
|
|
59
|
+
"description": "Search GitHub issues"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "mcp_octocode_githubViewRepoStructure",
|
|
63
|
+
"description": "View GitHub repository structure"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "mcp_octocode_npmPackageSearch",
|
|
67
|
+
"description": "Search npm packages"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "mcp_octocode_npmViewPackage",
|
|
71
|
+
"description": "View npm package information"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"keywords": [
|
|
75
|
+
"github",
|
|
76
|
+
"npm",
|
|
77
|
+
"code-search",
|
|
78
|
+
"repository",
|
|
79
|
+
"package-manager",
|
|
80
|
+
"development",
|
|
81
|
+
"api",
|
|
82
|
+
"search",
|
|
83
|
+
"mcp",
|
|
84
|
+
"octocode"
|
|
85
|
+
],
|
|
86
|
+
"license": "MIT",
|
|
87
|
+
"compatibility": {
|
|
88
|
+
"claude_desktop": ">=0.10.0",
|
|
89
|
+
"platforms": ["darwin", "win32", "linux"],
|
|
90
|
+
"runtimes": {
|
|
91
|
+
"node": ">=18.0.0"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"user_config": {
|
|
95
|
+
"github_token": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"title": "GitHub Token",
|
|
98
|
+
"description": "Personal access token for GitHub API (optional, increases rate limits)",
|
|
99
|
+
"sensitive": true,
|
|
100
|
+
"required": false
|
|
101
|
+
},
|
|
102
|
+
"npm_registry": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"title": "NPM Registry",
|
|
105
|
+
"description": "NPM registry URL",
|
|
106
|
+
"default": "https://registry.npmjs.org",
|
|
107
|
+
"required": false
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "octocode-mcp",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.16",
|
|
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
5
|
"author": "Guy Bary <guybary@gmail.com>",
|
|
6
6
|
"homepage": "https://octocode.ai",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=18.12.0"
|
|
16
16
|
},
|
|
17
|
-
"main": "
|
|
17
|
+
"main": "dist/index.js",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"type": "module",
|
|
20
|
-
"bin": "./
|
|
20
|
+
"bin": "./dist/index.js",
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "yarn lint && rollup -c",
|
|
23
23
|
"build:watch": "rollup -c --watch",
|
|
@@ -26,14 +26,23 @@
|
|
|
26
26
|
"test:watch": "vitest --watch",
|
|
27
27
|
"test:coverage": "vitest run --coverage",
|
|
28
28
|
"test:ui": "vitest --ui",
|
|
29
|
-
"debug": "npx @modelcontextprotocol/inspector node
|
|
29
|
+
"debug": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
30
30
|
"lint": "eslint src/**/*.ts tests/**/*.ts",
|
|
31
31
|
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
|
|
32
32
|
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
|
|
33
|
-
"format:check": "prettier --check \"src/**/*.{ts,js,json}\""
|
|
33
|
+
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
|
|
34
|
+
"dxt:validate": "dxt validate manifest.json",
|
|
35
|
+
"dxt:pack": "yarn build && dxt pack . octocode-mcp.dxt",
|
|
36
|
+
"dxt:pack:dev": "yarn build && dxt pack . octocode-mcp-dev.dxt",
|
|
37
|
+
"dxt:info": "dxt info octocode-mcp.dxt",
|
|
38
|
+
"dxt:sign": "dxt sign octocode-mcp.dxt --self-signed",
|
|
39
|
+
"dxt:verify": "dxt verify octocode-mcp.dxt",
|
|
40
|
+
"release:dxt": "yarn build && dxt pack . octocode-mcp.dxt && dxt sign octocode-mcp.dxt --self-signed"
|
|
34
41
|
},
|
|
35
42
|
"files": [
|
|
36
|
-
"
|
|
43
|
+
"dist",
|
|
44
|
+
"manifest.json",
|
|
45
|
+
"assets"
|
|
37
46
|
],
|
|
38
47
|
"dependencies": {
|
|
39
48
|
"@babel/core": "^7.28.0",
|
|
@@ -47,6 +56,7 @@
|
|
|
47
56
|
"zod": "^3.25.26"
|
|
48
57
|
},
|
|
49
58
|
"devDependencies": {
|
|
59
|
+
"@anthropic-ai/dxt": "^0.2.1",
|
|
50
60
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
51
61
|
"@rollup/plugin-json": "^6.1.0",
|
|
52
62
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
@@ -87,6 +97,8 @@
|
|
|
87
97
|
"semantic-search",
|
|
88
98
|
"typescript",
|
|
89
99
|
"nodejs",
|
|
90
|
-
"cli-tool"
|
|
100
|
+
"cli-tool",
|
|
101
|
+
"dxt",
|
|
102
|
+
"desktop-extension"
|
|
91
103
|
]
|
|
92
104
|
}
|