@toolsdk.ai/registry 1.0.109 → 1.0.110
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 +3 -3
- package/indexes/packages-list.json +87 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -120,9 +120,9 @@ For more detail please see [the guide](./docs/guide.md).
|
|
|
120
120
|
|
|
121
121
|
## MCP Servers
|
|
122
122
|
|
|
123
|
-
✅: Validated and runnable tools (
|
|
123
|
+
✅: Validated and runnable tools (706)
|
|
124
124
|
|
|
125
|
-
❌: Cannot be run by the MCP client (with mock environments variables (
|
|
125
|
+
❌: Cannot be run by the MCP client (with mock environments variables (3400))
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
|
|
@@ -1425,7 +1425,7 @@ Securely access and query databases with options for read-only permissions.
|
|
|
1425
1425
|
- [❌ sqlite](https://github.com/jacksteamdev/mcp-sqlite-bun-server): Integrates with SQLite to provide database querying and BI capabilities. (node)
|
|
1426
1426
|
- [❌ @benborla29/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql): Secure read-only MySQL database access to execute queries and analyze data patterns. (node)
|
|
1427
1427
|
- [❌ database-mcp](https://github.com/theralabs/legion-mcp): Enables natural language querying and management of multiple database types (PostgreSQL, MySQL, SQL Server, BigQuery) for data analysis, business intelligence, and database exploration. (python)
|
|
1428
|
-
- [
|
|
1428
|
+
- [✅ mongodb-mcp-server](https://github.com/mongodb-js/mongodb-mcp-server): Provides a bridge between MongoDB databases and conversational interfaces, enabling comprehensive database operations, collection management, schema inspection, and Atlas cloud service interactions with authentication and telemetry support. (21 tools) (node)
|
|
1429
1429
|
- [✅ mcp-firebird](https://github.com/purodelphi/mcpfirebird): Enables secure access to Firebird SQL databases through natural language, supporting table listing, schema descriptions, query execution, and field metadata retrieval with comprehensive security features like data masking and operation restrictions. (16 tools) (node)
|
|
1430
1430
|
- [❌ mysql-sse](https://github.com/mangooer/mysql-mcp-server-sse): Provides a lightweight MySQL database server implementation using Server-Sent Events (SSE) for streamlined database operations with modular Python connection handling. (python)
|
|
1431
1431
|
- [❌ database-explorer](https://github.com/wirdes/db-mcp-tool): Provides a unified interface for exploring and managing PostgreSQL, MySQL, and Firestore databases through specialized commands for listing tables, viewing triggers, executing SQL queries, and exporting schemas or data. (node)
|
|
@@ -9582,8 +9582,93 @@
|
|
|
9582
9582
|
"mongodb-mcp-server": {
|
|
9583
9583
|
"category": "databases",
|
|
9584
9584
|
"path": "databases/mongodb-mcp-server.json",
|
|
9585
|
-
"validated":
|
|
9586
|
-
"tools": {
|
|
9585
|
+
"validated": true,
|
|
9586
|
+
"tools": {
|
|
9587
|
+
"connect": {
|
|
9588
|
+
"name": "connect",
|
|
9589
|
+
"description": "Connect to a MongoDB instance"
|
|
9590
|
+
},
|
|
9591
|
+
"list-collections": {
|
|
9592
|
+
"name": "list-collections",
|
|
9593
|
+
"description": "List all collections for a given database"
|
|
9594
|
+
},
|
|
9595
|
+
"list-databases": {
|
|
9596
|
+
"name": "list-databases",
|
|
9597
|
+
"description": "List all databases for a MongoDB connection"
|
|
9598
|
+
},
|
|
9599
|
+
"collection-indexes": {
|
|
9600
|
+
"name": "collection-indexes",
|
|
9601
|
+
"description": "Describe the indexes for a collection"
|
|
9602
|
+
},
|
|
9603
|
+
"create-index": {
|
|
9604
|
+
"name": "create-index",
|
|
9605
|
+
"description": "Create an index for a collection"
|
|
9606
|
+
},
|
|
9607
|
+
"collection-schema": {
|
|
9608
|
+
"name": "collection-schema",
|
|
9609
|
+
"description": "Describe the schema for a collection"
|
|
9610
|
+
},
|
|
9611
|
+
"find": {
|
|
9612
|
+
"name": "find",
|
|
9613
|
+
"description": "Run a find query against a MongoDB collection"
|
|
9614
|
+
},
|
|
9615
|
+
"insert-many": {
|
|
9616
|
+
"name": "insert-many",
|
|
9617
|
+
"description": "Insert an array of documents into a MongoDB collection"
|
|
9618
|
+
},
|
|
9619
|
+
"delete-many": {
|
|
9620
|
+
"name": "delete-many",
|
|
9621
|
+
"description": "Removes all documents that match the filter from a MongoDB collection"
|
|
9622
|
+
},
|
|
9623
|
+
"collection-storage-size": {
|
|
9624
|
+
"name": "collection-storage-size",
|
|
9625
|
+
"description": "Gets the size of the collection"
|
|
9626
|
+
},
|
|
9627
|
+
"count": {
|
|
9628
|
+
"name": "count",
|
|
9629
|
+
"description": "Gets the number of documents in a MongoDB collection using db.collection.count() and query as an optional filter parameter"
|
|
9630
|
+
},
|
|
9631
|
+
"db-stats": {
|
|
9632
|
+
"name": "db-stats",
|
|
9633
|
+
"description": "Returns statistics that reflect the use state of a single database"
|
|
9634
|
+
},
|
|
9635
|
+
"aggregate": {
|
|
9636
|
+
"name": "aggregate",
|
|
9637
|
+
"description": "Run an aggregation against a MongoDB collection"
|
|
9638
|
+
},
|
|
9639
|
+
"update-many": {
|
|
9640
|
+
"name": "update-many",
|
|
9641
|
+
"description": "Updates all documents that match the specified filter for a collection"
|
|
9642
|
+
},
|
|
9643
|
+
"rename-collection": {
|
|
9644
|
+
"name": "rename-collection",
|
|
9645
|
+
"description": "Renames a collection in a MongoDB database"
|
|
9646
|
+
},
|
|
9647
|
+
"drop-database": {
|
|
9648
|
+
"name": "drop-database",
|
|
9649
|
+
"description": "Removes the specified database, deleting the associated data files"
|
|
9650
|
+
},
|
|
9651
|
+
"drop-collection": {
|
|
9652
|
+
"name": "drop-collection",
|
|
9653
|
+
"description": "Removes a collection or view from the database. The method also removes any indexes associated with the dropped collection."
|
|
9654
|
+
},
|
|
9655
|
+
"explain": {
|
|
9656
|
+
"name": "explain",
|
|
9657
|
+
"description": "Returns statistics describing the execution of the winning plan chosen by the query optimizer for the evaluated method"
|
|
9658
|
+
},
|
|
9659
|
+
"create-collection": {
|
|
9660
|
+
"name": "create-collection",
|
|
9661
|
+
"description": "Creates a new collection in a database. If the database doesn't exist, it will be created automatically."
|
|
9662
|
+
},
|
|
9663
|
+
"mongodb-logs": {
|
|
9664
|
+
"name": "mongodb-logs",
|
|
9665
|
+
"description": "Returns the most recent logged mongod events"
|
|
9666
|
+
},
|
|
9667
|
+
"export": {
|
|
9668
|
+
"name": "export",
|
|
9669
|
+
"description": "Export a query or aggregation results in the specified EJSON format."
|
|
9670
|
+
}
|
|
9671
|
+
}
|
|
9587
9672
|
},
|
|
9588
9673
|
"tigergraph": {
|
|
9589
9674
|
"category": "databases",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolsdk.ai/registry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.110",
|
|
4
4
|
"description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -527,6 +527,7 @@
|
|
|
527
527
|
"minimax-mcp-js": "0.0.17",
|
|
528
528
|
"mixpanel-mcp-server": "2.0.2",
|
|
529
529
|
"moneybird-mcp-server": "0.6.5",
|
|
530
|
+
"mongodb-mcp-server": "0.3.0",
|
|
530
531
|
"multicluster-mcp-server": "0.1.13",
|
|
531
532
|
"my-mcp-server": "0.0.1",
|
|
532
533
|
"mysql-mcp-server": "0.1.3",
|