-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcp-mongo-server.json
83 lines (83 loc) · 2.22 KB
/
mcp-mongo-server.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"server_info": {
"name": "mongodb",
"description": "This is an MCP server that implements a MongoDB interface. It demonstrates core MCP concepts by allowing: - Listing collections as resources - Reading collection schemas and contents - Executing MongoDB queries via tools - Providing collection summaries via prompts",
"repo_url": "https://github.com/kiliczsh/mcp-mongo-server",
"server_type": "Community Servers",
"server_category": [
"Database"
],
"server_version": "0.1.3"
},
"tools": [
{
"name": "query",
"description": "Execute a MongoDB query",
"input_schema": {
"type": "object",
"properties": {
"collection": {
"type": "string",
"description": "Name of the collection to query"
},
"filter": {
"type": "object",
"description": "MongoDB query filter"
},
"projection": {
"type": "object",
"description": "Fields to include/exclude"
},
"limit": {
"type": "number",
"description": "Maximum number of documents to return"
}
},
"required": [
"collection"
]
}
},
{
"name": "aggregate",
"description": "Execute a MongoDB aggregation pipeline",
"input_schema": {
"type": "object",
"properties": {
"collection": {
"type": "string",
"description": "Name of the collection to aggregate"
},
"pipeline": {
"type": "array",
"description": "Aggregation pipeline stages"
}
},
"required": [
"collection",
"pipeline"
]
}
}
],
"resources": [
{
"name": "",
"description": "MongoDB collection: {collection_name}",
"uri": "mongodb:///{collection_name}"
}
],
"prompts": [
{
"name": "analyze_collection",
"description": "Analyze a MongoDB collection structure and contents",
"input_schema": [
{
"name": "collection",
"description": "Name of the collection to analyze",
"required": true
}
]
}
]
}