@toolsdk.ai/registry 1.0.81 → 1.0.82

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 CHANGED
@@ -1,12 +1,12 @@
1
1
  # Awesome MCP Registry
2
2
 
3
- ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-69-blue)
3
+ ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-70-blue)
4
4
  ![awesome-mcp-registry License](https://img.shields.io/badge/LICENSE-MIT-ff69b4)
5
5
 
6
6
 
7
7
  Welcome to the Awesome MCP Registry.
8
8
 
9
- An open, high-quality, well-structured and developer-friendly list of 69+ MCP servers.
9
+ An open, high-quality, well-structured and developer-friendly list of 70+ MCP servers.
10
10
 
11
11
 
12
12
 
@@ -27,6 +27,7 @@ An open, high-quality, well-structured and developer-friendly list of 69+ MCP se
27
27
  - [Developer Tools](#developer-tools)
28
28
  - [Data Science Tools](#data-science-tools)
29
29
  - [File Systems](#file-systems)
30
+ - [Finance & Fintech](#finance-fintech)
30
31
  - [Knowledge & Memory](#knowledge-memory)
31
32
  - [Location Services](#location-services)
32
33
  - [Marketing](#marketing)
@@ -96,7 +97,7 @@ For more detail please see [the guide](./docs/guide.md).
96
97
 
97
98
  ✅: Validated and runnable tools (37)
98
99
 
99
- ❌: Cannot be run by the MCP client (with mock environments variables (32))
100
+ ❌: Cannot be run by the MCP client (with mock environments variables (33))
100
101
 
101
102
 
102
103
 
@@ -232,6 +233,14 @@ Manage files and directories with tools for reading, writing, and organizing fil
232
233
  - [❌ @modelcontextprotocol/server-gdrive](https://github.com/modelcontextprotocol/servers/blob/main/src/gdrive): MCP server for interacting with Google Drive (node)
233
234
 
234
235
 
236
+ <a id="finance-fintech"></a>
237
+ ## Finance & Fintech
238
+
239
+ Work with financial data, market info, and trading platforms using AI tools.
240
+
241
+ - [❌ @dragonkhoi/mercury-mcp](https://github.com/dragonkhoi/mercury-mcp/tree/main/src): Simple MCP server that interfaces with the Mercury API, allowing you to talk to your Mercury banking data from any MCP client like Cursor or Claude Desktop. (node)
242
+
243
+
235
244
  <a id="knowledge-memory"></a>
236
245
  ## Knowledge & Memory
237
246
 
@@ -187,7 +187,9 @@
187
187
  "name": "Finance & Fintech",
188
188
  "description": "Work with financial data, market info, and trading platforms using AI tools."
189
189
  },
190
- "packagesList": []
190
+ "packagesList": [
191
+ "@dragonkhoi/mercury-mcp"
192
+ ]
191
193
  },
192
194
  "gaming": {
193
195
  "config": {
@@ -1897,5 +1897,11 @@
1897
1897
  "path": "marketing/ashdevfr-discourse-mcp-server.json",
1898
1898
  "validated": false,
1899
1899
  "tools": {}
1900
+ },
1901
+ "@dragonkhoi/mercury-mcp": {
1902
+ "category": "finance-fintech",
1903
+ "path": "finance-fintech/mercury-mcp.json",
1904
+ "tools": {},
1905
+ "validated": false
1900
1906
  }
1901
1907
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "exports": {
6
6
  "./config/*": "./config/*",
@@ -0,0 +1,16 @@
1
+ {
2
+ "type": "mcp-server",
3
+ "name": "Mercury",
4
+ "logo": "https://pbs.twimg.com/profile_images/1651255375352721409/TP4SN0Nz_400x400.png",
5
+ "packageName": "@dragonkhoi/mercury-mcp",
6
+ "description": "Simple MCP server that interfaces with the Mercury API, allowing you to talk to your Mercury banking data from any MCP client like Cursor or Claude Desktop.",
7
+ "url": "https://github.com/dragonkhoi/mercury-mcp/tree/main/src",
8
+ "runtime": "node",
9
+ "license": "MIT",
10
+ "env": {
11
+ "mercury_api_key": {
12
+ "description": "YOUR_MERCURY_API_KEY",
13
+ "required": true
14
+ }
15
+ }
16
+ }