Skip to main content
Glama
ratulotron

sc-mcp

by ratulotron

sc-mcp

An MCP server that wraps the Scalable Capital sc CLI, exposing your broker data to any MCP-capable harness (Claude Code, Claude Desktop, Codex, Cursor, …).

[!Warning] Unofficial. This is a community, read-only wrapper around Scalable Capital's official sc CLI, not affiliated with or endorsed by Scalable Capital. It's a stopgap until they ship a first-party MCP server; expect to retire it when they do.

No warranty / use at your own risk. Provided "as is" under the MIT License, with no warranty of any kind. The author takes no responsibility for any loss, damage, incorrect data, or financial consequence arising from its use. This is a personal tool for your own broker data, you are responsible for verifying anything you act on. It is not financial advice.

Tools

Tool

What it returns

sc_overview

Portfolio total value, cash, performance

sc_holdings

All positions with prices, quantities, market values

sc_transactions

Trade history with filters (date, ISIN, type, paging)

sc_analytics

Allocation, sector/region exposure, attribution

sc_security_news

Latest news summary for a security by ISIN

sc_quote

Current quote for a security by ISIN

sc_search

Search securities within the portfolio context

sc_transaction

Details for a single transaction by ID

This server is read-only, it never places trades or mutates account state. All calls hit the broker live. Responses are cached in-process for 5 minutes.

The sc CLI also exposes write operations (watchlist, price-alerts, savings-plans, trades). These are deliberately not included in this release. Any future write support will be opt-in, disabled by default, and enabled only via an explicit environment flag, never on by default. Money-moving commands (trade, savings-plans) are out of scope entirely.

Related MCP server: ibkr-mcp

Prerequisites

  1. uv Python package manager installed and available on PATH.

  2. The sc CLI installed and on PATH.

  3. An authenticated session: sc login.

Compatibility

Tested against sc 0.2.x. The sc CLI is pre-1.0, so its command surface can change between minor versions, the server logs a warning to stderr at startup if your installed sc differs from the tested major.minor. Since sc is an external binary, not a Python dependency, so this is the only enforcement available. If you see the warning and a tool misbehaves, that mismatch is the likely cause.

Install

As long as the pre-requisites are met, installing as a Claude plugin or any other agent is breezy.

Claude Code (plugin, easiest)

This repo is also a Claude Code plugin marketplace. Two commands:

/plugin marketplace add ratulotron/sc-mcp
/plugin install sc-mcp@ratulotron

That registers the scalable-capital MCP server and a usage skill. It also bundles a light skill that tells Claude when and how to use the tools.

Claude Code (manual)

claude mcp add scalable-capital -- uvx --from git+https://github.com/ratulotron/sc-mcp@v0.1.0 sc-mcp

Cursor

Add to Cursor — or add to .cursor/mcp.json (or ~/.cursor/mcp.json):

{
  "mcpServers": {
    "scalable-capital": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/ratulotron/sc-mcp@v0.1.0", "sc-mcp"]
    }
  }
}

Codex

Add to ~/.codex/config.toml:

[mcp_servers.scalable-capital]
command = "uvx"
args = ["--from", "git+https://github.com/ratulotron/sc-mcp@v0.1.0", "sc-mcp"]

Claude Desktop (bundle, no config editing)

Download sc-mcp.mcpb, then in Claude Desktop go to Settings → Extensions → Install Extension and pick the file.

[!Note] If Claude Desktop can't find uvx, open the extension's settings and set the full path (e.g. /opt/homebrew/bin/uvx). GUI apps on macOS don't always inherit your shell PATH.

VS Code / other MCP clients

Add the standard server config (VS Code mcp.json, or any client's MCP config):

{
  "mcpServers": {
    "scalable-capital": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/ratulotron/sc-mcp@v0.1.0", "sc-mcp"]
    }
  }
}

Pin the @v0.1.0 tag (see Versioning). Drop it to track the latest main.

Configuration

Env var

Default

Effect

SC_MCP_CACHE_TTL

300

Seconds to cache successful responses in-process. Set 0 to disable caching (always hit the broker live).

Develop

uv sync
uv run sc-mcp      # starts the stdio server
uv run pytest

Maintaining compatibility as sc evolves, when to add/update tools, bump SUPPORTED_SC_VERSION, and the read-only invariants, is documented in CLAUDE.md.

Versioning

This package uses SemVer. The tools are the public API:

Bump

Trigger

MAJOR

A tool is removed/renamed, or a parameter changes incompatibly

MINOR

A tool or optional parameter is added

PATCH

Bug fix, error-message wording, internals

Releases are tagged vX.Y.Z. Pin a tag when installing, uvx --from git+... tracks the default branch (latest) by default, so without a pin your tool surface can change underneath you:

uvx --from git+https://github.com/ratulotron/sc-mcp@v0.1.0 sc-mcp

Most version bumps here are driven by sc CLI changes (see Compatibility), but the version number is this package's own, it does not mirror the sc version.

License

MIT

Available Tools

8 tools
sc_analyticsA

Get Scalable Capital portfolio analytics — allocation breakdowns, sector/region exposure, and performance attribution.

ParametersJSON Schema
NameRequiredDescriptionDefault
portfolio_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description bears the full burden. 'Get' implies a read-only operation, and the content of results is stated, but the description does not disclose how the optional portfolio_id behaves (e.g., what null means), whether any rate limits or auth requirements exist, or any limitations of the analytics data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence that front-loads the action and resource, then lists concrete facets of the result. No wasted words or redundant restatements.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return values are covered. The tool is simple with one optional parameter, but the missing parameter semantics and lack of differentiation from sc_overview leave an agent with enough ambiguity that the definition is merely adequate, not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description never mentions portfolio_id or its meaning. The parameter name is self-explanatory, and there is only one optional parameter, but the description fails to clarify what a null value or omitted parameter resolves to, leaving the agent to guess.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('Scalable Capital portfolio analytics') and enumerates precise deliverables: allocation breakdowns, sector/region exposure, and performance attribution. This clearly distinguishes it from siblings like sc_holdings and sc_overview.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: whenever portfolio-level analytics are needed. However, it provides no explicit guidance about when not to use it or how it differs from sc_overview, which could also plausibly provide portfolio-level data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sc_holdingsC

Get Scalable Capital portfolio holdings — all positions with current prices, quantities, and market values. Live broker data.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_ytdNo
portfolio_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, but it only states that data is live and includes prices, quantities, and market values. It does not disclose authentication needs, rate limits, error behavior, pagination, or how optional parameters affect the response.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two tight sentences with the core action and payload front-loaded. Every clause earns its place, and there is no redundant filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Although an output schema exists, the description omits critical context for two optional parameters and gives no usage guidance versus sibling tools. For a broker data tool with no annotations, this is too thin to fully support correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description adds no meaning for include_ytd or portfolio_id. Both parameters are left entirely undocumented, so an agent cannot infer what values to provide or what effect they have.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'Get Scalable Capital portfolio holdings' and clarifies the payload with 'all positions with current prices, quantities, and market values.' It is clear enough to distinguish from siblings like sc_transactions or sc_quote, though it does not explicitly name those alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool should be used when portfolio position data is needed, especially with 'Live broker data' signaling current values. However, it does not provide explicit guidance about when to choose this over sc_overview, sc_analytics, or sc_quote, nor does it mention any exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sc_overviewB

Get Scalable Capital broker portfolio overview — total value, cash, performance. Returns live data directly from the broker.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_ytdNo
portfolio_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of behavioral context. It adds useful information by stating that data is live and comes directly from the broker, and 'Get' implies a read operation. However, it does not disclose auth requirements, caching behavior, or how optional parameters affect the behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler: it front-loads the resource and core fields, then adds a useful behavioral note about live data. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has low complexity and an output schema, so the description does not need to document return values. However, it is incomplete regarding parameter behavior and portfolio selection, and it offers no hints about when this overview is the right choice among sibling tools. It is adequate for a basic read, but still has clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for the two undocumented parameters, but it does not explain include_ytd or portfolio_id. The schema titles are self-explanatory to a degree, but the description adds no meaning beyond them, leaving agents to guess how these options shape the request or response.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches a Scalable Capital broker portfolio overview and names its key contents: total value, cash, and performance. It does not explicitly distinguish itself from siblings like sc_holdings or sc_analytics, but the word 'overview' and listed fields make the aggregate-level purpose reasonably clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given for when to prefer this tool over siblings such as sc_holdings, sc_transactions, or sc_analytics. The description implies it is for high-level portfolio summaries, but it never states exclusions or alternatives, leaving selection to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sc_quoteB

Get the current Scalable Capital quote for a security by ISIN.

ParametersJSON Schema
NameRequiredDescriptionDefault
isinYes
include_ytdNo
portfolio_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It clearly implies a read-only quote lookup, but it does not disclose quote freshness, data source, authentication expectations, or error behavior. The core behavior is transparent enough for a simple lookup, but additional context is missing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One concise sentence, front-loaded with the action and resource, with no filler or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers only the core lookup behavior and the required parameter. It omits any explanation of the two optional parameters and does not provide enough context for an agent to know when to set them. Though an output schema exists, the optional-parameter gap leaves the definition incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only the 'isin' parameter is meaningfully explained, and only incidentally through the phrase 'by ISIN.' The optional 'include_ytd' and 'portfolio_id' parameters are completely undocumented, and schema description coverage is 0%, so the description does not compensate for the gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies a clear verb and resource: 'Get the current Scalable Capital quote for a security by ISIN.' It is distinct from the sibling tools in function, but it does not explicitly differentiate itself from alternatives like sc_search or sc_holdings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is only implied: if an agent needs a current quote by ISIN, this is the tool. There is no explicit guidance on when to use this over siblings, nor any mention of related lookup tools such as sc_search.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sc_security_newsA

Get latest news summary for a specific security by ISIN from Scalable Capital.

ParametersJSON Schema
NameRequiredDescriptionDefault
isinYes
localeNoen_DE

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must carry the behavioral disclosure burden. 'Get' implies read-only behavior and 'latest news summary' implies a return type, but the description does not disclose behavior around empty results, locale effects, staleness, or any operational constraints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the action and resource. Every word contributes meaning, with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is relatively simple and has an output schema, so return values need not be described. Still, the absence of usage guidance, behavioral details, and locale semantics leaves some gaps for an agent invoking this tool in an unfamiliar context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaning to the primary parameter by saying the security is identified 'by ISIN'. However, schema description coverage is 0% and the locale parameter is not addressed beyond its schema default, leaving its purpose and accepted values under-specified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get'), a clear resource ('latest news summary'), and the key input ('by ISIN'), which makes the tool's purpose immediately obvious. It also distinguishes itself from siblings like sc_quote and sc_overview by targeting news rather than quotes or holdings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: when a news summary for a security is needed. However, it provides no explicit guidance on when not to use it or which alternative sibling tool might be more appropriate in other scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sc_transactionA

Get details for a single Scalable Capital broker transaction by ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
portfolio_idNo
transaction_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. 'Get details' clearly conveys a non-mutating read operation, but there is no mention of permission requirements, response behavior, or any edge cases. This is adequate for a simple getter but not richly transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single clear sentence with no filler. It immediately states the action, the object, the scope, and the lookup key, making it easy for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and an output schema exists, so return-value details are not required. However, with no annotations and no usage guidance for the optional portfolio_id or the distinction from sc_transactions, the description leaves some gaps that an agent would need to infer.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It clarifies that transaction_id is the lookup key via 'by ID', but it does not explain the optional portfolio_id parameter or its purpose. Only one of two parameters receives semantic meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'Get details for a single Scalable Capital broker transaction by ID.' It clearly distinguishes this singular fetch-by-ID tool from the sibling sc_transactions list tool, even without naming it explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for fetching one transaction when its ID is known, but it does not explicitly state when to prefer this over sc_transactions or how portfolio_id relates to use. Usage context is present but not elaborated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sc_transactionsB

List Scalable Capital broker transactions with optional filters. Use for reconciliation, tax analysis, or reviewing trade history.

ParametersJSON Schema
NameRequiredDescriptionDefault
isinNo
cursorNo
to_timeNo
from_timeNo
page_sizeNo
type_filterNo
portfolio_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It conveys a read-only 'List' operation but does not disclose pagination behavior, sorting, time formatting, or scope despite parameters like cursor, page_size, and to_time/from_time. This is minimal for a no-annotation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The primary action is front-loaded and the use cases are concise. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While an output schema exists, the description is incomplete for a 7-parameter tool. It lacks parameter semantics, pagination guidance, and disambiguation from the similarly named sibling sc_transaction. An agent would need to inspect the schema deeply and still might not understand expected date or filter formats.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description does not explain any of the seven parameters. The phrase 'optional filters' only hints at their existence and provides no meaning for isin, cursor, to_time, from_time, page_size, type_filter, or portfolio_id.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and the resource 'Scalable Capital broker transactions', with optional filters. It is specific and actionable, but it does not explicitly differentiate itself from the sibling tool 'sc_transaction', which could plausibly be the single-transaction counterpart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says when to use this tool: 'Use for reconciliation, tax analysis, or reviewing trade history.' This gives clear context and target use cases, though it does not mention alternatives or exclusions versus sc_transaction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 8 tool updatesv0.1.0
    • First observedsc_analytics
    • First observedsc_holdings
    • First observedsc_overview
    • First observedsc_quote
    • First observedsc_search
    • First observedsc_security_news
    • First observedsc_transaction
    • First observedsc_transactions

TDQS

B3.4/5.0

Scored across 8 tools

Disambiguation4/5

Most tools are clearly distinct, but sc_transactions vs sc_transaction and the overlapping portfolio summary tools (sc_overview, sc_holdings, sc_analytics) could cause a mis-selection. The descriptions do clarify the boundaries, so this is only a minor concern.

Naming Consistency5/5

All tool names follow the same sc_ prefix plus resource noun pattern, using snake_case consistently. The plural/singular distinction between sc_transactions and sc_transaction cleanly signals list vs detail.

Tool Count5/5

Eight tools is well-scoped for a broker-focused MCP server. Each tool covers a meaningful read-only capability without unnecessary bloat or thin redundancy.

Completeness4/5

The server covers the core read-only portfolio workflow: overview, holdings, transactions, analytics, quotes, search, and news. There are minor gaps around order management or deeper security metadata, but these seem outside the apparent scope and can be worked around.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    A read-only MCP server for Robinhood portfolio research. Wraps robin_stocks to give AI assistants access to your portfolio data for analysis.
    13
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    A read-only-by-default MCP server for Interactive Brokers that exposes account, positions, PnL, market data, and trade history from a local TWS/IB Gateway session, with optional trading capabilities.
    15
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Exposes TradingView data including quotes, technical ratings, historical OHLCV, and market screening through an MCP server using unofficial libraries.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Read-only MCP server for accessing Placera headlines, articles, company tags, and Telegram search data.
    MIT