MCP Server Boilerplate
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mongo-create-documentC | Create a new document in a MongoDB collection |
| mongo-find-documentsC | Query documents from a MongoDB collection |
| mongo-update-documentC | Update documents in a MongoDB collection |
| mongo-delete-documentC | Delete documents from a MongoDB collection |
| mongo-aggregateC | Execute aggregation pipeline on a MongoDB collection |
| mongo-count-documentsC | Count documents in a MongoDB collection |
| mongo-list-collectionsB | List all collections in a MongoDB database |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Every tool has a clearly distinct purpose targeting specific MongoDB operations: aggregate, count, create, delete, find, list collections, and update. There is no overlap or ambiguity between these CRUD and administrative functions.
All tools follow a perfectly consistent 'mongo-verb-document/collection' naming pattern with hyphens separating components. The naming convention is uniform across all seven tools, making them easily predictable and readable.
With 7 tools, this server provides a well-scoped set covering essential MongoDB operations. Each tool earns its place by addressing a core database function without being excessive or insufficient for the domain.
The toolset offers complete CRUD coverage (create, read/find, update, delete) plus aggregation, counting, and collection listing. This covers the full lifecycle of MongoDB document operations with no obvious gaps for the stated purpose.