Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Financial Datasets MCP Server

[![Add to Kiro](https://kiro.dev/images/add-to-kiro.svg)](https://kiro.dev/launch/mcp/add?name=financial-datasets&config=%7B%22command%22%3A%22uv%22%2C%22args%22%3A%5B%22--directory%22%2C%22%2Fabsolute%2Fpath%2Fto%2Ffinancial-datasets-mcp%22%2C%22run%22%2C%22server.py%22%5D%7D)

## Introduction

This is a Model Context Protocol (MCP) server that provides access to stock market data from [Financial Datasets](https://www.financialdatasets.ai/).
Expand Down Expand Up @@ -107,3 +109,25 @@ This MCP server provides the following tools:
- "What are Apple's recent income statements?"
- "Show me the current price of Tesla stock"
- "Get historical prices for MSFT from 2024-01-01 to 2024-12-31"

## Connecting to Kiro

To install in [Kiro](https://kiro.dev), click the badge at the top of this README or manually add the following to your Kiro MCP config file (`.kiro/settings/mcp.json` or `~/.kiro/settings/mcp.json`):

```json
{
"mcpServers": {
"financial-datasets": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/financial-datasets-mcp",
"run",
"server.py"
]
}
}
}
```

Replace `/absolute/path/to/financial-datasets-mcp` with the absolute path to this project.