Nasdaq Data Link

Nasdaq Data Link

MCP server to interact with the data feeds provided by the Nasdaq Data Link. Developed by the community and maintained by Stefano Amorelli.

1.6K

5 Tools

Packaged by
Requires Secrets
Add to Docker Desktop

Version 4.43 or later needs to be installed to add the server automatically

About

Nasdaq Data Link MCP Server

MCP server to interact with the data feeds provided by the Nasdaq Data Link. Developed by the community and maintained by Stefano Amorelli.

What is an MCP Server?

MCP Info

Image Building InfoDockerfile|https://github.com/stefanoamorelli/nasdaq-data-link-mcp/blob/main/Dockerfile

Docker Image built by|Docker Inc. Docker Scout Health Score| Docker Scout Health ScoreVerify Signature|COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/nasdaq-data-link --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pubLicence|MIT License

Available Tools (5)

Tools provided by this ServerShort Description
export_datasetExport dataset in different formats.
get_datasetGet data from a specific dataset.
get_dataset_metadataGet metadata about a dataset without downloading data.
list_databasesList available databases.
search_datasetsSearch for datasets by keyword.

Tools Details

Tool: export_dataset

Export dataset in different formats.

Parameters:

  • dataset_code: Dataset code in format 'DATABASE/DATASET'
  • output_format: Export format: 'csv', 'json', or 'xml' (default: csv)
  • start_date: Optional start date in YYYY-MM-DD format
  • end_date: Optional end date in YYYY-MM-DD format

Example: export_dataset(dataset_code='WIKI/AAPL', output_format='json')

ParametersTypeDescription
dataset_codestring
end_datestringoptional
output_formatstringoptional
start_datestringoptional

Tool: get_dataset

Get data from a specific dataset.

Parameters:

  • dataset_code: Dataset code in format 'DATABASE/DATASET' (e.g., 'WIKI/AAPL')
  • start_date: Optional start date in YYYY-MM-DD format
  • end_date: Optional end date in YYYY-MM-DD format

Example: get_dataset(dataset_code='WIKI/AAPL', start_date='2020-01-01')

ParametersTypeDescription
dataset_codestring
end_datestringoptional
start_datestringoptional

Tool: get_dataset_metadata

Get metadata about a dataset without downloading data.

Parameters:

  • dataset_code: Dataset code in format 'DATABASE/DATASET' (e.g., 'WIKI/AAPL')

Example: get_dataset_metadata(dataset_code='WIKI/AAPL')

ParametersTypeDescription
dataset_codestring

Tool: list_databases

List available databases.

Example: list_databases()

Tool: search_datasets

Search for datasets by keyword.

Parameters:

  • query: Search term (e.g., 'GDP', 'stock prices', 'bitcoin')

Example: search_datasets(query='oil prices')

ParametersTypeDescription
querystring

Use this MCP Server

{
  "mcpServers": {
    "nasdaq-data-link": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "NASDAQ_DATA_LINK_API_KEY",
        "mcp/nasdaq-data-link"
      ],
      "env": {
        "NASDAQ_DATA_LINK_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

Why is it safer to run MCP Servers with Docker?

Manual installation

You can install the MCP server using:

Installation for

Related servers