Financial Datasets MCP Server
An MCP server for interacting with the Financial Datasets stock market API.
Overview
MCP Server is a platform designed for interacting with Financial Datasets through an API, allowing users to access and manipulate financial data efficiently.
To use MCP Server, you need to connect to the API endpoint provided in the documentation, authenticate your requests, and utilize the various endpoints to retrieve or send financial data.
- Access to a wide range of financial datasets - API endpoints for data retrieval and manipulation - Support for various data formats
- Analyzing stock market trends using historical financial data.
- Integrating financial data into applications for real-time analysis.
- Conducting research on financial metrics and indicators.
Add to your AI client
Use these steps to connect Financial Datasets MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-financial-datasets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-financial-datasets"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-financial-datasets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-financial-datasets"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-financial-datasets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-financial-datasets"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-financial-datasets": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-financial-datasets"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-financial-datasets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-financial-datasets"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-financial-datasets": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-financial-datasets"
]
}
}
}FAQ
What types of financial datasets are available?
MCP Server provides access to datasets related to stocks, bonds, commodities, and more.
Is there a cost associated with using MCP Server?
MCP Server is free to use under the MIT license.
What programming languages can be used to interact with MCP Server?
MCP Server is built in Python, but you can use any language that can make HTTP requests to interact with the API.