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

@neuroequalityorg/mcp-finance-server

v1.0.0

Published

MCP server providing finance tools: stock quotes, portfolio tracking, currency conversion, and crypto prices

Readme

MCP Finance Server

A Model Context Protocol (MCP) server providing finance tools for stock quotes, portfolio tracking, currency conversion, and cryptocurrency prices.

MCP TypeScript License

Features

  • Stock Quotes: Get real-time (mock) stock data for major companies
  • Cryptocurrency Prices: Track popular cryptocurrencies (BTC, ETH, SOL, etc.)
  • Currency Conversion: Convert between 17+ fiat currencies
  • Portfolio Tracking: Create and manage investment portfolios with gain/loss calculations

Installation

From npm (recommended)

npm install -g mcp-finance-server

From source

git clone https://github.com/ttracx/mcp-finance-server.git
cd mcp-finance-server
npm install
npm run build

Usage

Running the Server

# If installed globally
mcp-finance-server

# From source
npm start

# Development mode (with hot reload)
npm run dev

Claude Desktop Integration

Add the following to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "finance": {
      "command": "npx",
      "args": ["-y", "mcp-finance-server"]
    }
  }
}

Or if installed from source:

{
  "mcpServers": {
    "finance": {
      "command": "node",
      "args": ["/path/to/mcp-finance-server/dist/index.js"]
    }
  }
}

After saving the configuration, restart Claude Desktop.

Available Tools

Stock Tools

| Tool | Description | |------|-------------| | get_stock_quote | Get current quote for a single stock | | get_multiple_quotes | Get quotes for multiple stocks at once | | list_available_stocks | List all available stock symbols |

Supported Stocks: AAPL, GOOGL, MSFT, AMZN, TSLA, NVDA, META, JPM

Cryptocurrency Tools

| Tool | Description | |------|-------------| | get_crypto_price | Get current price for a cryptocurrency | | get_multiple_crypto | Get prices for multiple cryptocurrencies | | list_available_crypto | List all available crypto symbols |

Supported Cryptocurrencies: BTC, ETH, SOL, ADA, DOGE, XRP, AVAX, LINK

Currency Tools

| Tool | Description | |------|-------------| | convert_currency | Convert amount between currencies | | list_exchange_rates | List all available exchange rates |

Supported Currencies: USD, EUR, GBP, JPY, CAD, AUD, CHF, CNY, INR, MXN, BRL, KRW, SGD, HKD, SEK, NOK, NZD

Portfolio Tools

| Tool | Description | |------|-------------| | portfolio_add | Add shares to a portfolio | | portfolio_remove | Remove shares from a portfolio | | portfolio_view | View portfolio with current values and P&L |

Available Resources

The server also exposes MCP resources for quick data access:

  • finance://market/summary - Overview of all stocks
  • finance://crypto/summary - Overview of all cryptocurrencies
  • finance://rates/all - All exchange rates

Example Prompts

Once integrated with Claude Desktop, try these prompts:

"What's the current price of Apple stock?"

"Show me the prices for Bitcoin, Ethereum, and Solana"

"Convert 1000 USD to EUR"

"Create a portfolio called 'tech' and add 10 shares of NVDA at $450 each"

"What's my tech portfolio worth now?"

"List all available stocks"

Data Notes

⚠️ This server uses mock data for demonstration purposes. Prices are realistic but static. For production use, integrate with real financial APIs like:

Development

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build for production
npm run build

# Run tests (if added)
npm test

Project Structure

mcp-finance-server/
├── src/
│   └── index.ts      # Main server implementation
├── dist/             # Compiled JavaScript (generated)
├── package.json
├── tsconfig.json
└── README.md

License

MIT License - see LICENSE for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Author

ttracx - GitHub


Built with ❤️ using the Model Context Protocol