Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.13.3-slim

WORKDIR /app

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The server dynamically indexes all Massive.com API endpoints at startup from [`l

### Prerequisites

- Python 3.10+
- Python 3.12+
- A Massive.com API key <br> [![Button]][Link]
- [Astral UV](https://docs.astral.sh/uv/getting-started/installation/) (v0.4.0+)

Expand All @@ -72,7 +72,7 @@ Install the MCP server, then register it with Claude Code:

```bash
# Install the server (one-time — downloads dependencies ahead of time)
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.8.1"
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.8.2"

# Register with Claude Code
claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massive
Expand Down Expand Up @@ -102,7 +102,7 @@ You can also run `claude mcp add-from-claude-desktop` if the MCP server is insta
1. Install the server:

```bash
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.8.1"
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.8.2"
```

3. Find the installed binary path:
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": "0.4",
"name": "mcp_massive",
"display_name": "Massive Market Data",
"version": "0.8.1",
"version": "0.8.2",
"description": "Stocks, options & indices market data via Massive.com financial data API. Access real-time and historical prices, quotes, trades, and aggregates for equities, options contracts, ETFs, FX, crypto, and more.",
"author": {
"name": "Massive",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "mcp_massive"
version = "0.8.1"
version = "0.8.2"
description = "A MCP server project"
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.26.0",
"httpx>=0.28.0",
Expand Down
Loading
Loading