@juspay/neurolink 7.3.8 → 7.4.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/CHANGELOG.md +7 -0
- package/README.md +5 -0
- package/dist/cli/commands/mcp.js +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [7.4.0](https://github.com/juspay/neurolink/compare/v7.3.8...v7.4.0) (2025-08-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add Bitbucket MCP server integration ([239ca6d](https://github.com/juspay/neurolink/commit/239ca6df81be5474d983df95998f90e2e6d633b9))
|
|
7
|
+
|
|
1
8
|
## [7.3.8](https://github.com/juspay/neurolink/compare/v7.3.7...v7.3.8) (2025-08-05)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -303,6 +303,11 @@ npx @juspay/neurolink generate "Write a poem" --disable-tools
|
|
|
303
303
|
|
|
304
304
|
# Discover available MCP servers
|
|
305
305
|
npx @juspay/neurolink mcp discover --format table
|
|
306
|
+
|
|
307
|
+
# Install popular MCP servers (NEW: Bitbucket support added!)
|
|
308
|
+
npx @juspay/neurolink mcp install filesystem
|
|
309
|
+
npx @juspay/neurolink mcp install github
|
|
310
|
+
npx @juspay/neurolink mcp install bitbucket # 🆕 NEW
|
|
306
311
|
```
|
|
307
312
|
|
|
308
313
|
### 🔧 SDK Custom Tool Registration (NEW!)
|
package/dist/cli/commands/mcp.js
CHANGED
|
@@ -68,6 +68,17 @@ const POPULAR_MCP_SERVERS = {
|
|
|
68
68
|
transport: "stdio",
|
|
69
69
|
description: "Persistent memory and knowledge storage",
|
|
70
70
|
},
|
|
71
|
+
bitbucket: {
|
|
72
|
+
command: "npx",
|
|
73
|
+
args: ["-y", "@nexus2520/bitbucket-mcp-server"],
|
|
74
|
+
env: {
|
|
75
|
+
BITBUCKET_USERNAME: "${BITBUCKET_USERNAME}",
|
|
76
|
+
BITBUCKET_TOKEN: "${BITBUCKET_TOKEN}",
|
|
77
|
+
BITBUCKET_BASE_URL: "${BITBUCKET_BASE_URL}",
|
|
78
|
+
},
|
|
79
|
+
transport: "stdio",
|
|
80
|
+
description: "Bitbucket repository management and development workflows",
|
|
81
|
+
},
|
|
71
82
|
};
|
|
72
83
|
/**
|
|
73
84
|
* Convert SDK MCPStatus to CLI format with server list
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.4.0",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 9 major providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|