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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@volaticloud/mcp-server

v0.1.0

Published

MCP server for the VolatiCloud GraphQL API — manage strategies, bots, exchanges, and backtests via AI agents

Downloads

179

Readme

@volaticloud/mcp-server

MCP (Model Context Protocol) server for the VolatiCloud GraphQL API. Lets AI agents manage strategies, bots, exchanges, and backtests through natural language.

Quick Start

npx -y @volaticloud/mcp-server

Prerequisites

  1. A VolatiCloud account with an organization
  2. An API client (create one at Organization > API Keys in the dashboard)

Configuration

Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "volaticloud": {
      "command": "npx",
      "args": ["-y", "@volaticloud/mcp-server"],
      "env": {
        "VOLATICLOUD_ENDPOINT": "https://api.volaticloud.com/gateway/v1/query",
        "VOLATICLOUD_CLIENT_ID": "<your-client-id>",
        "VOLATICLOUD_CLIENT_SECRET": "<your-client-secret>"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "volaticloud": {
      "command": "npx",
      "args": ["-y", "@volaticloud/mcp-server"],
      "env": {
        "VOLATICLOUD_ENDPOINT": "https://api.volaticloud.com/gateway/v1/query",
        "VOLATICLOUD_CLIENT_ID": "<your-client-id>",
        "VOLATICLOUD_CLIENT_SECRET": "<your-client-secret>"
      }
    }
  }
}

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | VOLATICLOUD_CLIENT_ID | Yes | — | API client ID | | VOLATICLOUD_CLIENT_SECRET | Yes | — | API client secret | | VOLATICLOUD_ENDPOINT | No | https://api.volaticloud.com/gateway/v1/query | GraphQL endpoint URL |

Available Tools

Static Tools

| Tool | Description | |------|-------------| | introspect_schema | Explore the API schema, optionally drill into a specific type | | search_schema | Search types, fields, and enums by keyword | | execute_graphql | Run any GraphQL query or mutation with variables |

Dynamic Tools (auto-generated)

The server introspects the GraphQL schema at startup and generates individual tools for each query and mutation. Examples:

  • strategies, bots, exchanges, runners — List resources
  • create_strategy, create_bot, create_exchange — Create resources
  • update_strategy, update_bot — Update resources
  • delete_strategy, delete_bot — Delete resources
  • start_bot, stop_bot, restart_bot — Bot lifecycle
  • run_backtest, run_simulation — Run analysis
  • get_bot_open_positions, get_bot_trading_config — Live data

How It Works

  1. On startup, authenticates using your API client credentials (OAuth2 client_credentials flow)
  2. Introspects the GraphQL schema to discover all available operations
  3. Generates MCP tool definitions from each query and mutation
  4. Communicates with AI agents via stdio (standard MCP transport)
  5. Automatically refreshes the access token before expiry

Development

cd mcp-server
npm install
npm run build
node dist/index.js