npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

arango-mcp-server

v1.0.0

Published

MCP server for interacting with Arango databases. For more information about the Model Context Protocol, visit https://modelcontextprotocol.io

Readme

ArangoDB MCP Server

This is an implementation of the Model Context Protocol for ArangoDB.

Overview

To be filled.

Components

Resources

Tools

Query Tools

  • readQuery
    • Execute read-only query on the database
    • Input:
      • databaseName (string): The database to query
      • aql (string): The read-only AQL query to execute
    • Returns: Query results as array of objects
  • readWriteQuery
    • Execute query on the database
    • Input:
      • databaseName (string): The database to query
      • aql (string): The AQL query to execute
    • Returns: Query results as array of objects
  • listDatabases
    • List all the databases on the ArangoDB server
    • Returns: Array of the databases names
  • listCollections
    • List all the collections in an ArangoDB database
    • Input:
      • databaseName (string): The name of the database
    • Returns: Array of objects { "name": "<collectionName>" }

Usage

To connect to an arangodb instance running on localhost:2434, to the database "account", add the following to your claude_desktop_config.json, assuming the path to this project is /home/yourcoolname/arango-mcp-server:

{
  "mcpServers": {
    "arangodb-account" : {
      "command": "node",
      "args": [
        "/home/yourcoolname/arango-mcp-server/dist/index.js",
        "https://localhost:2434",
        "username",
        "password"
      ]
    }
  }
}

Development

Clone the repository. Install everything. Setup the dev environment. Run the watcher. Edit index.ts.

$ npm install
$ npm run dev:setup
$ npm run dev

Go to http://localhost:5173/ to see the inspector.

Todo

  • [ ] Properly study the spec to see if the current implementation of resources actually make sense (I don't think it does)
    • [x] The resource templates make sense
  • [ ] Change all the "arango" to "arangodb" (repo name included...)
  • [ ] Add back the arangodb password
  • [ ] Proper README
    • [ ] Tools/resource/etc following the format of the official anthropic stuff
  • [ ] Figure out notifications
  • [ ] Health checks
  • [ ] More tools?
  • [ ] Access all the databases running on an arangodb instance
  • [ ] Release on npm somehow so it can be used with npx
  • [ ] resources/subscribe and notifications/resources/list_changed and resources/unsubscribe
  • [x] Properly document tools in the readme
  • [x] Like on the SQLite MCP client
    • [x] write_query tool separated from read_query -> actually is readWriteQuery
    • [x] list_collections (see list_tables)
  • [x] Client pool ie one client per database
  • [x] Dev environment
  • [x] resources/read with a template to read any document by database name, collection, id.
  • [x] Add username and passwords as parameters of the command