nodejs-mcp-mongodb
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MONGODB_URI | Yes | The MongoDB connection string (e.g., mongodb://localhost:27017) | |
| MONGODB_DB_NAME | Yes | The name of the MongoDB database to use |
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_business_summaryA | Get business summary metrics: total users, active users, paid users, pending payments, and new users in the last 7 days |
| get_new_usersA | Get users created within the last N days |
| get_pending_paymentsA | Get all customers with pending payments |
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 3 tools
get_business_summary provides aggregate metrics, while get_new_users and get_pending_payments return detailed lists. There is conceptual overlap since new users and pending payments are part of the summary, but the granularity difference helps distinguish them.
All three tools follow a consistent 'get_<noun>' pattern in snake_case, making the API naming predictable and uniform.
With three tools, the server is tightly scoped to business analytics. This is an appropriate size for a focused read-only reporting API.
The summary tool covers five metrics, but dedicated detail tools exist only for new users and pending payments. Missing detail tools for active users, paid users, and total users create an imbalance, though the core summary is present.