Finage MCP Server

by KendamaQQ

269 downloads
Not rated
GitHub

About

Finage MCP Server is a Model Context Protocol server that provides access to stock market data through the Finage API. It is designed for use with MCP clients such as Claude Desktop.

Details

Author
KendamaQQ
Downloads
269
Categories
Other, API

- Integrates with the Finage stock market data API
- Currently supports two endpoints (version 0.0.1)
- Uses uv for package execution
- Configurable via environment variable for API key

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 Finage 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, set the FINAGE_API_KEY environment variable, ensure uv is installed, and add the server configuration to your claude_desktop_config.json. The exact JSON configuration is provided in the README, requiring replacement of directory and API key placeholders.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "finage mcp server": {
            "finage_mcp": {
                "command": "uv",
                "args": [
                    "--directory",
                    "<DIRECTORY-OF-CLONED-PROJECT>/finage_mcp",
                    "run",
                    "finage_mcp"
                ],
                "env": {
                    "FINAGE_API_KEY": ""
                }
            }
        }
    }
}

McpServers

{
    "finage_mcp": {
        "command": "uv",
        "args": [
            "--directory",
            "<DIRECTORY-OF-CLONED-PROJECT>/finage_mcp",
            "run",
            "finage_mcp"
        ],
        "env": {
            "FINAGE_API_KEY": ""
        }
    }
}

Finage MCP Server

A MCP server for the stock market data API, Finage API.
Only small subset of endpoints is implemented.

Warning

The package is under development and only supports two endpoint as of v0.0.1. Be cautious.

Configuration

Getting an API Key

1. Sign up for a Free Finage API key 2. Add the API key to your environment variables as FINAGE_API_KEY 3. Make sure you have uv installed

Clone the project

git clone https://github.com/KendamaQQ/finage_mcp.git

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

NOTE Make sure you replace the <DIRECTORY-OF-CLONED-PROJECT> with the directory of the cloned project.

{
  "mcpServers": {
    "finage_mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "<DIRECTORY-OF-CLONED-PROJECT>/finage_mcp",
        "run",
        "finage_mcp"
      ],
      "env": {
        "FINAGE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
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.