Wealthnow hosted MCP server: market data, fundamentals, SEC filings, insider, 13F and congressional trades, and private markets. OAuth sign-in over Streamable HTTP.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/Hlobo-dev/wealthnow-mcp{
"mcpServers": {
"wealthnow-mcp": {
"command": "node",
"args": ["/path/to/wealthnow-mcp/dist/index.js"]
}
}
}Resumen de MCP Servers
# Wealthnow MCP server
**Market data, fundamentals, SEC filings, insider, 13F and congressional trades, and private markets for AI agents.**
Wealthnow is a hosted [Model Context Protocol](https://modelcontextprotocol.io) server. Add one URL to your AI app, sign in to Wealthnow, and your agent can call financial data tools directly.
| | |
|---|---|
| **Endpoint** | `https://mcp.wealthnow.io/mcp` |
| **Transport** | Streamable HTTP |
| **Sign-in** | OAuth 2.1. Your AI app opens Wealthnow's sign-in page and returns you connected, with no key to copy. |
| **API key** | Optional, for scripts and apps without OAuth: send it in the `X-API-Key` header. |
| **Registry** | [`io.wealthnow/mcp`](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.wealthnow/mcp) in the official MCP Registry |
| **Free plan** | 1,000 credits a month, no card needed. Connecting from an AI app starts it for you. |
Every tool is read-only.
- **Default list:** your agent first sees `account_status` and up to 12 starter tools.
- **Full catalogue:** connect to `https://mcp.wealthnow.io/mcp?catalog=full` to list every public tool. The same list is in the [server card](https://mcp.wealthnow.io/.well-known/mcp/server-card.json).
- **Plans:** your agent can call any tool your plan includes, whether or not it is listed. The Free plan covers market data, fundamentals and SEC filings.
*Data and structured signals, not investment advice.*
---
## Connect
### Claude (claude.ai, Claude Desktop, Claude mobile)
**[Add Wealthnow to Claude](https://claude.ai/customize/connectors?modal=add-custom-connector&connectorName=Wealthnow&connectorUrl=https%3A%2F%2Fmcp.wealthnow.io%2Fmcp)**
To add it by hand instead:
1. In Claude, open **Settings → Connectors → Add custom connector**.
2. Enter the name `Wealthnow` and the URL `https://mcp.wealthnow.io/mcp`.
3. Click **Connect**, sign in to Wealthnow, then click **Connect** on the Wealthnow page.
A connector you add on the web also appears in Claude Desktop and on mobile.
### Claude Code
```bash
claude mcp add --transport http wealthnow https://mcp.wealthnow.io/mcp
```
Then run `/mcp` inside Claude Code, choose **wealthnow**, and sign in.
Or install it as a plugin from this repository:
```bash
/plugin marketplace add Hlobo-dev/wealthnow-mcp
/plugin install wealthnow@wealthnow
```
### ChatGPT
1. Open ChatGPT on the web and go to **Settings → Apps**. Some accounts label this **Apps & Connectors** or **Connectors**.
2. Open **Advanced settings** and turn on **Developer mode**.
3. Back on **Apps**, click **Create**.
4. Enter the URL `https://mcp.wealthnow.io/mcp` and choose **OAuth**.
5. Sign in to Wealthnow when ChatGPT sends you there.
### Cursor
**[Add Wealthnow to Cursor](https://cursor.com/en/install-mcp?name=wealthnow&config=eyJ1cmwiOiJodHRwczovL21jcC53ZWFsdGhub3cuaW8vbWNwIn0%3D)**
Or add this to `~/.cursor/mcp.json`:
```json
{
"mcpServers": {
"wealthnow": { "url": "https://mcp.wealthnow.io/mcp" }
}
}
```
The first time you use it, Cursor asks you to sign in to Wealthnow.
### Other MCP apps
In most apps that support remote MCP servers with OAuth, you add `https://mcp.wealthnow.io/mcp` as a remote (Streamable HTTP) server, and the app registers itself and runs the sign-in. We have checked this with:
- Grok, Perplexity and Devin
- Cline, Kiro, Amp and LM Studio
- Warp's terminal, Postman, Slack and Figma
**Not working yet.** Sign-in from these apps is still being enabled on our side. Until then, connect them with an API key:
- **VS Code, Zed, GitHub Copilot CLI and Goose:** they identify themselves with a client metadata document.
- **Gemini CLI 0.60 and later:** it requires an `iss` parameter on the sign-in response.
**VS Code** (`.vscode/mcp.json`): VS Code prompts for the key once and stores it securely.
```json
{
"inputs": [
{
"type": "promptString",
"id": "wealthnow-key",
"description": "Wealthnow API key",
"password": true
}
],
"servers": {
"wealthnow": {
"type": "http",
"url": "https://mcp.wealthnow.io/mcp",
"headers": { "X-API-Key": "${input:wealthnow-key}" }
}
}
}
```
**Zed** (`settings.json`): Zed skips sign-in when an `Authorization` header is set, and the server accepts the key as a bearer token.
```json
{
"context_servers": {
"wealthnow": {
"url": "https://mcp.wealthnow.io/mcp",
"headers": { "Authorization": "Bearer YOUR_TENGU_API_KEY" }
}
}
}
```
**Gemini CLI:**
```bash
gemini mcp add --transport http wealthnow https://mcp.wealthnow.io/mcp -H "X-API-Key: YOUR_TENGU_API_KEY"
```
### With an API key
Get a key from the [Wealthnow dashboard](https://app.wealthnow.io/auth/sign-up) and send it in the `X-API-Key` header. This works in any client that lets you set headers:
```json
{
"mcpServers": {
"wealthnow": {
"url": "https://mcp.wealthnow.io/mcp",
"headers": { "X-API-Key": "YOUR_TENGU_API_KEY" }
}
}
}
```
If your app only runs local servers, bridge to the remote one with [`mcp-remote`](https://www.npmjs.com/package/mcp-remote):
```json
{
"mcpServers": {
"wealthnow": {
"command": "npx",
"args": ["-y", "mcp-remote@0.14.2", "https://mcp.wealthnow.io/mcp",
"--header", "X-API-Key:${TENGU_API_KEY}"],
"env": { "TENGU_API_KEY": "YOUR_TENGU_API_KEY" }
}
}
}
```
---
## Try it
Once connected, ask your agent:
> Using Wealthnow, what's the latest quote for AAPL?
Or call it directly with an API key:
```bash
curl -s -X POST https://mcp.wealthnow.io/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-H "X-API-Key: $TENGU_API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"fundamentals_price_snapshot","arguments":{"ticker":"AAPL"}}}'
```
More in [`examples/`](./examples): a [quickstart](./examples/quickstart.md), [Python](./examples/list_tools.py) and [TypeScript](./examples/snapshot.ts).
## What it covers
- Real-time and historical prices for stocks and crypto
- Fundamentals: income statement, balance sheet, cash flow, metrics, screener and peers
- SEC filings: 10-K, 10-Q, 8-K and structured extracts
- Insider trades (Form 4), institutional holdings (13F) and congressional trades
- News and sentiment, macro, rates, FX and commodities
- Options flow, alternative data and private markets (companies, deals, investors)
## Discovery
- MCP server card: https://mcp.wealthnow.io/.well-known/mcp/server-card.json
- OAuth protected resource metadata: https://mcp.wealthnow.io/.well-known/oauth-protected-resource
- REST API (OpenAPI 3.1): https://firm.wealthnow.io/api/openapi.json
## Links
- Product: https://wealthnow.io/api
- Docs: https://app.wealthnow.io/docs/mcp-and-sdks
- Sign up: https://app.wealthnow.io/auth/sign-up
- Pricing: https://wealthnow.io/pricing
- Privacy: https://wealthnow.io/privacy
- Terms: https://wealthnow.io/terms
- Support: hello@wealthnow.io
## License
The examples and listing files in this repository are MIT licensed; see [LICENSE](./LICENSE). The Wealthnow service is covered by its [terms](https://wealthnow.io/terms). "Wealthnow" is a mark of Tengu LLC.
Lo que la gente pregunta sobre wealthnow-mcp
¿Qué es Hlobo-dev/wealthnow-mcp?
+
Hlobo-dev/wealthnow-mcp es mcp servers para el ecosistema de Claude AI. Wealthnow hosted MCP server: market data, fundamentals, SEC filings, insider, 13F and congressional trades, and private markets. OAuth sign-in over Streamable HTTP. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-23.
¿Cómo se instala wealthnow-mcp?
+
Puedes instalar wealthnow-mcp clonando el repositorio (https://github.com/Hlobo-dev/wealthnow-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar Hlobo-dev/wealthnow-mcp?
+
Nuestro agente de seguridad ha analizado Hlobo-dev/wealthnow-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene Hlobo-dev/wealthnow-mcp?
+
Hlobo-dev/wealthnow-mcp es mantenido por Hlobo-dev. La última actividad registrada en GitHub es del 2026-09-23, con 0 issues abiertos.
¿Hay alternativas a wealthnow-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega wealthnow-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/hlobo-dev-wealthnow-mcp)<a href="https://claudewave.com/repo/hlobo-dev-wealthnow-mcp"><img src="https://claudewave.com/api/badge/hlobo-dev-wealthnow-mcp" alt="Featured on ClaudeWave: Hlobo-dev/wealthnow-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.