- Home
- MCP servers
- Marketaux
Marketaux
- typescript
4
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"zolo-ryan-marketauxmcpserver": {
"command": "node",
"args": [
"C:\\Path\\To\\Your\\project\\NewsMCP\\build\\index.js"
],
"env": {
"MARKETAUX_API_KEY": "Your-API-TOKEN"
}
}
}
}This Marketaux MCP Server enables you to access Marketaux search capabilities through MCP, connecting your client applications to entity, country, industry, and symbol based queries with a simple local server setup.
How to use
You run the Marketaux MCP Server locally and connect your MCP client to it. The server exposes a search tool that you can invoke from your client to query Marketaux data using symbols, entity types, industries, and countries, filtered by language and publication dates.
How to install
Prerequisites you need before starting:
-
Node.js installed on your machine.
-
Access to a Marketaux API key.
Follow these steps to set up and run the MCP server locally.
Configuration and run
{
"mcpServers": {
"newsmcp": {
"command": "node",
"args": [
"C:\\Path\\To\\Your\\project\\NewsMCP\\build\\index.js"
],
"env": {
"MARKETAUX_API_KEY": "Your-API-TOKEN"
}
}
}
}
Additional notes
Environment variables are used to authenticate requests to Marketaux. In the example, the server requires MARKETAUX_API_KEY. Keep this value secure and do not share it publicly.
Tools and capabilities
The server provides a tool named market_aux_news_search which executes a search using Marketaux' search all API. It accepts inputs including symbols, entity_types, industries, countries, language, published_before, published_after, and published_on.
Available tools
market_aux_news_search
Executes the search using Marketaux search all API with inputs: symbols, entity_types, industries, countries, language, published_before, published_after, published_on.