@toolsdk.ai/registry 1.0.112 → 1.0.113
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 +3793 -3793
- package/dist/api/package-handler.js +6 -3
- package/dist/api/package-so.d.ts +12 -0
- package/dist/api/package-so.js +203 -0
- package/dist/helper.js +1 -0
- package/dist/sandbox/mcp-sandbox-client.d.ts +37 -0
- package/dist/sandbox/mcp-sandbox-client.js +428 -0
- package/indexes/categories-list.json +3783 -3783
- package/indexes/packages-list.json +1 -1
- package/package.json +2 -1
- package/packages/search-data-extraction/newsnow-mcp-server.json +1 -0
- package/packages/support-service-management/hh-jira-mcp-server.json +14 -1
|
@@ -42191,7 +42191,7 @@
|
|
|
42191
42191
|
},
|
|
42192
42192
|
"12306-mcp": {
|
|
42193
42193
|
"category": "travel-transportation",
|
|
42194
|
-
"path": "travel-transportation/
|
|
42194
|
+
"path": "travel-transportation/12306-mcp.json",
|
|
42195
42195
|
"validated": true,
|
|
42196
42196
|
"tools": {
|
|
42197
42197
|
"get-current-date": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolsdk.ai/registry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.113",
|
|
4
4
|
"description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -92,6 +92,7 @@
|
|
|
92
92
|
"@deventerprisesoftware/scrapi-mcp": "0.0.3",
|
|
93
93
|
"@devyhan/xcode-mcp": "0.4.1",
|
|
94
94
|
"@digitalocean/mcp": "0.0.13",
|
|
95
|
+
"@e2b/code-interpreter": "^2.0.0",
|
|
95
96
|
"@e2b/mcp-server": "0.2.0",
|
|
96
97
|
"@enescinar/twitter-mcp": "0.2.0",
|
|
97
98
|
"@executeautomation/playwright-mcp-server": "1.0.6",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "mcp-server",
|
|
3
3
|
"packageName": "newsnow-mcp-server",
|
|
4
|
+
"logo": "https://newsnow.busiyi.world/icon.svg",
|
|
4
5
|
"description": "Provides a bridge to the NewsNow platform for retrieving trending and latest news from various sources with customizable result limits and markdown-formatted output.",
|
|
5
6
|
"url": "https://github.com/ourongxing/newsnow-mcp-server",
|
|
6
7
|
"runtime": "node",
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
"url": "https://github.com/alexeydubinin/hh-jira-mcp-server",
|
|
6
6
|
"runtime": "python",
|
|
7
7
|
"license": "unknown",
|
|
8
|
-
"env": {
|
|
8
|
+
"env": {
|
|
9
|
+
"HH_JIRA_MCP_USER": {
|
|
10
|
+
"description": "Jira username (e.g., v.pupkin)",
|
|
11
|
+
"required": true
|
|
12
|
+
},
|
|
13
|
+
"HH_JIRA_MCP_TEAM": {
|
|
14
|
+
"description": "Jira team or project key (e.g., some-team)",
|
|
15
|
+
"required": true
|
|
16
|
+
},
|
|
17
|
+
"HH_JIRA_MCP_SEARCH_FILTER": {
|
|
18
|
+
"description": "Jira JQL search filter (e.g., status in (\"Development: In progress\"))",
|
|
19
|
+
"required": true
|
|
20
|
+
}
|
|
21
|
+
},
|
|
9
22
|
"name": "Jira MCP Server"
|
|
10
23
|
}
|