sigmavue-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SIGMAVUE_API_URL | No | The URL of the SigmaVue API. Optional, defaults to the public SigmaVue API. | https://sigmavue-api-green.onrender.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| sigmavue_statusA | Backend health plus, when a token is stored, the current user and account
summary. Safe to call unauthenticated — it reports |
| sigmavue_accounts_listA | List every broker account the caller's token is scoped to. Breadth is
decided server-side by the token (a member sees their own; a manager token
sees all it owns). Optional |
| sigmavue_clients_listA | List managed trading profiles (maps to |
| sigmavue_journal_listA | List trade-journal entries, newest first. Optional |
| sigmavue_portfolioB | Current open positions plus a rollup summary. Optional |
| sigmavue_trade_executeA | Place an order — fail-closed. Mirrors the CLI exactly: live execution is
disabled (pass |
| sigmavue_copy_groups_listC | List copy-trading groups. Optional |
| sigmavue_copy_groups_createA | Create a copy-trading group with a leader account and optional followers. Adding followers to an EXISTING group is intentionally not exposed over MCP (honest-disabled in the capability layer — needs an atomic server endpoint). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Most tools have distinct purposes, but 'sigmavue_accounts_list' and 'sigmavue_clients_list' overlap significantly; the description of clients_list explicitly directs users to accounts_list for full breadth, causing potential confusion for an agent.
Tools consistently use the 'sigmavue_' prefix and generally follow a verb_noun pattern (e.g., 'accounts_list', 'trade_execute'), but 'portfolio' and 'status' are nouns only, and 'trade_execute' inverts the typical verb_noun order, creating minor inconsistency.
With 8 tools covering accounts, clients, copy groups, journal, portfolio, status, and trade execution, the count is well-scoped for a trading platform MCP server—neither too few nor excessive.
The tool surface covers essential listing and execution operations, but notable gaps exist: no way to update or delete copy groups, no close-position tool, and no order-specific detail retrieval beyond journal entries.