Metadata-Version: 2.4
Name: veles-finance-mcp
Version: 1.0.4
Summary: Veles Finance Agent MCP server — institutional DD reports for Claude Desktop, Cursor, Windsurf
License: Apache-2.0
Keywords: ai-agent,claude,due-diligence,finance,mcp
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic>=2.7.0
Requires-Dist: yfinance>=0.2.40
Description-Content-Type: text/markdown

# veles-finance-mcp

Institutional Due Diligence tools for Claude Desktop, Cursor, Windsurf — one command to install.

## Install

```bash
uvx veles-finance-mcp
```

## Claude Desktop config

Add to `~/.claude/claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "veles-finance": {
      "command": "uvx",
      "args": ["veles-finance-mcp"]
    }
  }
}
```

## Tools

| Tool | What it does |
|---|---|
| `get_market_data` | Live price, P/E, beta, news for any ticker via yfinance |
| `due_diligence_report` | Full DD report with APPROVED/REJECTED verdict |
| `kelly_position_size` | Optimal position sizing via Kelly Criterion |

## Example

After connecting, ask Claude:

> "Analyse NVDA for a conservative investor"

Claude will call `due_diligence_report("NVDA", "conservative")` and return a structured report ending with `VERDICT: APPROVED ✓` or `VERDICT: REJECTED ✗`.
