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

@vectrade/mcp-server

v1.1.0

Published

VecTrade MCP Server — 27 financial tools for AI coding assistants

Readme

VecTrade MCP Integration Kit

CI License

Zero-config setup for VecTrade financial tools in AI IDEs.

27 financial tools available in Claude Desktop, Cursor, VS Code Copilot, Windsurf, Cline, and any MCP-compatible client.

Installation

pip install vectrade-mcp

Or with uvx:

uvx vectrade-mcp-setup

To use the unified CLI directly after install:

vectrade mcp setup claude-code
vectrade mcp doctor

For development:

pip install -r requirements.txt

Quick Setup (60 seconds)

Option 1: Interactive Setup

python -m vectrade_mcp.setup_wizard
# or, if installed:
vectrade-mcp-setup

Option 2: Manual Configuration

Copy the appropriate config for your IDE:

| IDE | Config File | Status | |-----|-------------|--------| | Claude Desktop | configs/claude-desktop.json | ✓ | | Cursor | configs/cursor.json | ✓ | | VS Code (Copilot) | configs/vscode.json | ✓ | | Windsurf | configs/windsurf.json | ✓ | | Cline | configs/cline.json | ✓ | | Continue.dev | configs/continue-dev.json | ✓ |

Option 3: CLI Auto-Setup

vectrade mcp setup cursor
vectrade mcp setup claude-code
vectrade mcp setup vscode

Compatibility aliases also work:

vectrade mcp setup claude
vectrade setup claude-code

What You Get

Once configured, your AI assistant can:

  • "What's AAPL trading at?" → Real-time quotes
  • "Analyze NVDA before earnings" → AI-powered analysis
  • "Find undervalued large caps with dividend > 3%" → Stock screening
  • "Show me the AAPL options chain" → Options data
  • "Compare MSFT vs GOOGL fundamentals" → Side-by-side comparison
  • "Buy 10 shares of AAPL" → AI agent trading (Bot API)
  • "How's my portfolio doing?" → Portfolio & KPI tracking

See TOOLS.md for the full list of available tools.

AI Agent Trading (NEW)

Give your AI assistant a trading account! With a Bot API key (tvt_...), Claude/GPT can autonomously place orders, manage portfolios, and compete on the leaderboard.

{
  "mcpServers": {
    "vectrade": {
      "command": "npx",
      "args": ["-y", "@vectrade/mcp-server"],
      "env": {
        "VECTRADE_API_KEY": "vq_live_...",
        "VECTRADE_BOT_KEY": "tvt_your_bot_key"
      }
    }
  }
}

Trading tools: place_order, cancel_order, get_orders, get_portfolio, get_trading_kpi, get_bot_account

See guides/bot-trading for full docs.

Verify Connection

export VECTRADE_API_KEY=vq_live_...
vectrade mcp doctor

Legacy verification command is still available:

python -m vectrade_mcp.verify
vectrade-mcp-verify
vectrade-mcp-doctor

Development

pip install -r requirements.txt
pytest --cov=vectrade_mcp --cov-report=term-missing
ruff check .

See CONTRIBUTING.md for details.

Requirements

  • Node.js 18+ (for npx execution)
  • VecTrade API key (get one free)

Hosted MCP (Zero Install)

Use VecTrade's hosted MCP server — no local setup needed. Just add the remote URL to your IDE config:

Streamable HTTP (recommended):

{
  "mcpServers": {
    "vectrade": {
      "url": "https://mcp.vectrade.io/mcp",
      "headers": {
        "X-API-Key": "vq_live_..."
      }
    }
  }
}

Legacy SSE:

{
  "mcpServers": {
    "vectrade": {
      "url": "https://mcp.vectrade.io/sse",
      "headers": {
        "X-API-Key": "vq_live_..."
      }
    }
  }
}

The hosted server uses the same API key authentication and plan limits as the REST API.

Self-Hosting

To run the MCP server on your own infrastructure:

# Build and run
npm run build
PORT=3200 VECTRADE_API_KEY=vq_live_... npm start         # Streamable HTTP
PORT=3200 VECTRADE_API_KEY=vq_live_... npm run start:sse  # Legacy SSE

# Docker
docker build -t vectrade-mcp .
docker run -p 3200:3200 -e VECTRADE_API_KEY=vq_live_... vectrade-mcp

Documentation

Full docs at docs.vectrade.io/mcp.

Operational and policy docs in this repo:

Community

  • 💬 Discord — Get help, share prompts, discuss MCP workflows
  • 📖 MCP Directory — Discover other MCP servers
  • 🐍 finkit — Open-source indicators library (no API key needed)
  • ⭐ Star this repo to help others find it!

License

MIT — see LICENSE.