mongodb-mcp-server

mongodb-js/mongodb-mcp-server

4.2

mongodb-mcp-server is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.

If you are the rightful owner of mongodb-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A Model Context Protocol server for interacting with MongoDB Databases and MongoDB Atlas.

Try mongodb-mcp-server with chat:

MCPHub score:4.24

Has a README

Github repo has a README.md.

Has a License

Github repo has license info.

Server can be inspected

View server inspector

Server schema can be extracted

Can get at lease one tool info from the README or server.

Online hosted on MCPHub

Can be automatically deployed by MCPHub.

Has social accounts

Do not have any social accounts.

Claimed by the author or certified by MCPHub

If you are the author, claim authorship

AI Evaluation Report
Total Score: 8/10

The agent demonstrates a strong ability to perform various operations related to MongoDB Atlas and MongoDB databases. It accurately identifies limitations, such as the free cluster limit, and successfully lists databases and collections. The agent also performs operations like creating collections and inserting documents, providing confirmation and document IDs. However, it lacks detailed explanations of the methods used and verification steps for some operations, which affects the clarity and reliability of its responses. Overall, the agent shows competence in executing tasks but could improve by providing more detailed feedback and verification.

  • Test case 1
    Score: 8/10
    Perform the operation of creating a free MongoDB Atlas cluster named 'TestCluster' in the 'US East (N. Virginia)' region using AWS as the cloud provider.

    No valid answer is generated due to invalid input. The creation of the MongoDB Atlas cluster named 'TestCluster' failed because the project has reached the limit for the number of free clusters. You may need to either delete an existing free cluster or upgrade your project to create a new one.

  • Test case 2
    Score: 9/10
    Perform the operation of listing all databases and collections within the MongoDB Atlas cluster named 'TestCluster'.
    • Databases in the 'TestCluster':
      • mcp
        • Collections:
          • mcp_dev
      • admin
        • No collections found.
      • local
        • Collections:
          • oplog.rs This summarizes the databases and collections within the MongoDB Atlas cluster named 'TestCluster'.
  • Test case 3
    Score: 5/10
    Perform the operation of creating a new collection named 'user_profiles' in the 'mcp' database within the MongoDB Atlas cluster named 'TestCluster'.

    Collection "user_profiles" created in database "mcp".

  • Test case 4
    Score: 7/10
    Perform the operation of inserting a new document into the 'user_profiles' collection within the 'mcp' database in the MongoDB Atlas cluster named 'TestCluster'. The document should include the following fields: 'user_id' (string), 'name' (string), 'email' (string), and 'age' (integer).

    The operation was successful, and 1 document has been inserted into the 'user_profiles' collection. The inserted document ID is: 688d76984b4a46df83f2fac0.

  • Test case 5
    Score: 9/10
    Perform the operation of retrieving the storage size and document count for the 'user_profiles' collection within the 'mcp' database in the MongoDB Atlas cluster named 'TestCluster'.

    The size of the "mcp.user_profiles" collection is 114.00 bytes. There is 1 document in the collection "user_profiles".