Stock Performance MCP Server

by peppial

316 downloads
Not rated
GitHub

About

Stock Performance MCP Server is a Model Context Protocol server that provides stock performance data from the Alpha Vantage API. It is designed for Claude Desktop users who want to query stock information through natural language conversations.

Details

Author
peppial
Downloads
316
Categories
Finance

- Integrates with Alpha Vantage free API for stock data
- Built with .NET and runs as a dotnet command
- Configured via Claude Desktop's MCP configuration file
- Requires a free Alpha Vantage API key to use

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Stock Performance MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, build the .NET project, and add it as an MCP server in Claude Desktop's configuration file. You must provide your free Alpha Vantage API key via the ALPHA_VANTAGE_API_KEY environment variable.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "stock performance mcp server": {
            "StocksMCP": {
                "command": "dotnet",
                "args": [
                    "run",
                    "--project",
                    "[the path to ]/StocksMCPServer",
                    "--no-build"
                ],
                "env": {
                    "ALPHA_VANTAGE_API_KEY": "<YOUR_KEY>"
                }
            }
        }
    }
}

McpServers

{
    "StocksMCP": {
        "command": "dotnet",
        "args": [
            "run",
            "--project",
            "[the path to ]/StocksMCPServer",
            "--no-build"
        ],
        "env": {
            "ALPHA_VANTAGE_API_KEY": "<YOUR_KEY>"
        }
    }
}
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.