Skip to main content
Glama
linzi007

mongodb36-mcp-server

by linzi007

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MONGODB_DB_NAMEYesDatabase name to use
MONGODB_CONNECTION_STRINGYesMongoDB connection URI

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

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_collectionsA

List all collections in the database

findC

Find documents in a collection

find_oneB

Find a single document in a collection

countA

Count documents in a collection

aggregateC

Run an aggregation pipeline

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.3/5.0

Scored across 5 tools

Disambiguation4/5

Find and find_one are similar but clearly separated by singular vs plural result intent. Count, aggregate, and list_collections each have distinct purposes, so an agent can reliably choose the right tool.

Naming Consistency4/5

All tool names use lowercase snake_case and follow familiar MongoDB terminology. list_collections follows verb_noun while find, find_one, count, and aggregate are verb-only, but the naming is still predictable and readable.

Tool Count5/5

Five tools is well-scoped for a read-only MongoDB query server. Each tool covers a distinct core operation without redundancy or bloat.

Completeness2/5

The tool set only supports reading and querying data; there are no create, update, or delete operations. As a general MongoDB server this is a significant gap, leaving agents unable to perform basic write workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues