finmap-mcp 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,25 +1,18 @@
1
1
  # Finmap MCP Server
2
2
 
3
- A Model Context Protocol (MCP) server that provides comprehensive financial market data from [finmap.org](https://finmap.org). Access historical market data for multiple global stock exchanges through a standardized MCP interface.
4
-
5
- ## Features
6
-
7
- - **Comprehensive Data**: Market capitalization, trading volume, price changes, sector analysis
8
- - **Interactive Charts**: Direct links to finmap.org visualizations
9
- - **Both Remote & Local**: Cloudflare Workers hosted server + npm package
10
- - **Rich Metadata**: Company information, sector classifications, historical data
3
+ The finmap.org MCP server provides comprehensive historical data from the US, UK, Russian and Turkish stock exchanges. Access sectors, tickers, company profiles, market cap, volume, value, and trade counts, as well as treemap and histogram visualizations.
11
4
 
12
5
  ## Supported Exchanges
13
6
 
14
- | Exchange | Code | Country | Earliest Data |
15
- |----------|------|---------|---------------|
16
- | Moscow Exchange | `moex` | Russia | 2011-12-19 |
17
- | New York Stock Exchange | `nyse` | USA | 2024-12-09 |
18
- | NASDAQ | `nasdaq` | USA | 2024-12-09 |
19
- | American Stock Exchange | `amex` | USA | 2024-12-09 |
20
- | All US Markets | `us-all` | USA | 2024-12-09 |
21
- | London Stock Exchange | `lse` | UK | 2025-02-07 |
22
- | Borsa Istanbul | `bist` | Turkey | 2015-11-30 |
7
+ | Exchange | Code | Country | Earliest Data | Update Frequency |
8
+ |----------|------|---------|---------------|------------------|
9
+ | Moscow Exchange | `moex` | Russia | 2011-12-19 | Every 15 minutes (weekdays) |
10
+ | New York Stock Exchange | `nyse` | United States | 2024-12-09 | Hourly (weekdays) |
11
+ | NASDAQ Stock Market | `nasdaq` | United States | 2024-12-09 | Hourly (weekdays) |
12
+ | American Stock Exchange | `amex` | United States | 2024-12-09 | Hourly (weekdays) |
13
+ | US Combined (AMEX + NASDAQ + NYSE) | `us-all` | United States | 2024-12-09 | Hourly (weekdays) |
14
+ | London Stock Exchange | `lse` | United Kingdom | 2025-02-07 | Hourly (weekdays) |
15
+ | Borsa Istanbul | `bist` | Turkey | 2015-11-30 | Bi-monthly |
23
16
 
24
17
  ## Installation & Usage
25
18
 
@@ -219,6 +212,7 @@ Get detailed company information including business description (US market only)
219
212
 
220
213
  ```json
221
214
  {
215
+ {
222
216
  "ModuleTitle": {
223
217
  "label": "Module Title",
224
218
  "value": "Company Description"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "finmap-mcp",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "MCP server providing financial market data from finmap.org",
5
5
  "main": "./dist/stdio-server.js",
6
6
  "type": "module",