MarketAuxMcpServer MCP Server

1. Sign up for a [Free account on Marketaux](https://www.marketaux.com/register) 2. Verify your email account and go to dashboard 3. Get your api

Local serverstdioGo

What is the MarketAuxMcpServer MCP server?

MarketAuxMcpServer MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. 1. Sign up for a Free account on Marketaux 2. Verify your email account and go to dashboard 3. Get your api token from there.

What the assistant can call

Once MarketAuxMcpServer is connected, these are the calls the assistant has available:

  • market_aux_news_search — Execute the search using market aux search all api
  • inputs — - symbols
  • entity_types — industries
  • countries — language
  • published_before — published_after
  • Tools — The Tools tool exposed by this server
  • Configuration — The Configuration tool exposed by this server
  • Contributing — The Contributing tool exposed by this server
  • Disclaimer — This is not officially associated with Marketaux api. It is a third party implementation of the api with a MCP Server

Configuration and credentials

You will need one environment variable: MARKETAUX_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Choosing this one

This sits in the team communication group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MarketAuxMcpServer's toolset — market_aux_news_search, inputs, entity_types and 6 more — is a fair guide to whether it matches your workflow. It is maintained by Zolo-Ryan; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MarketAuxMcpServer's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MarketAuxMcpServer.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the marketauxmcpserver mcp server does with a few real requests.

Available tools

ToolWhat it does
market_aux_news_searchExecute the search using market aux search all api
inputs- symbols
entity_typesindustries
countrieslanguage
published_beforepublished_after
ToolsThe Tools tool exposed by this server.
ConfigurationThe Configuration tool exposed by this server.
ContributingThe Contributing tool exposed by this server.
DisclaimerThis is not officially associated with Marketaux api. It is a third party implementation of the api with a MCP Server.

How to install the MarketAuxMcpServer MCP server

{
    "mcpServers": {
        "newsmcp": {
            "command": "node",
            "args": [
                "C:\\Path\\To\\Your\\project\\NewsMCP\\build\\index.js"
            ],
            "env": {
                "MARKETAUX_API_KEY": "Your-API-TOKEN"
            }
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MARKETAUX_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MarketAuxMcpServer to market aux news search.
  • Use MarketAuxMcpServer to inputs.
  • Use MarketAuxMcpServer to entity types.

Frequently asked questions

It connects MarketAuxMcpServer to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (market_aux_news_search, inputs, entity_types, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MarketAuxMcpServer directly.