# Toss Invest [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/wi9ine/toss-invest-sdk  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/toss-invest

## Description
Access Toss Securities market, account, and opt-in trading APIs through MCP.

## Claude Desktop Quick Installation
Heuristic fallback — verify the package name and runner against the repository README before running it. Uses `npx` (confidence: low):

```json
"mcpServers": {
  "toss-invest": {
    "command": "npx",
    "args": ["-y","toss-invest"]
  }
}
```

## Documentation & README

# Toss Securities Open API

> Unofficial community project. This project is not affiliated with or endorsed by Toss Securities.

pnpm workspace for a TypeScript SDK and a local MCP server for the Toss Securities Open API. The
MCP server is read-only unless trading is explicitly enabled.

## Packages

- [`packages/sdk`](https://github.com/wi9ine/toss-invest-sdk/blob/HEAD/packages/sdk): TypeScript SDK with automatic access-token caching and refresh
- [`apps/mcp`](https://github.com/wi9ine/toss-invest-sdk/blob/HEAD/apps/mcp): local MCP server built on the SDK, with opt-in trading permissions

## Requirements

- Node.js 22.18 or later
- pnpm

## Setup

```sh
pnpm install
cp .env.example .env
```

Set `TOSS_CLIENT_ID` and `TOSS_CLIENT_SECRET` in `.env`, then run:

```sh
pnpm check
pnpm test
pnpm test:live
```

The live test only performs read operations, and the MCP server defaults to read-only. See the
[SDK guide](https://github.com/wi9ine/toss-invest-sdk/blob/HEAD/packages/sdk/README.md) and [MCP setup guide](https://github.com/wi9ine/toss-invest-sdk/blob/HEAD/apps/mcp/README.md) for usage details.

