-
|
I want an AI agent to turn broker or exchange fills into annotated post-trade candlestick-chart PNGs, but I do not want to clone a repository or depend on a published npm package. KLinePic provides a first-party stdio MCP adapter with three tools:
The source is public under MIT: https://github.com/sher1096/klinepic-agent-api-examples The remote GitHub installation path has been tested with the official MCP SDK: initialization succeeds and What is the minimal configuration for an MCP client that supports stdio and environment variables? Is there a Windows-specific command form, and how can I verify the setup without consuming chart quota? Requirements and boundaries:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Use the GitHub repository itself as the macOS / Linux and clients that resolve
|
Beta Was this translation helpful? Give feedback.
Use the GitHub repository itself as the
npxpackage source.macOS / Linux and clients that resolve
npxdirectly{ "mcpServers": { "klinepic": { "command": "npx", "args": ["-y", "github:sher1096/klinepic-agent-api-examples"], "env": { "KLINE_AGENT_API_KEY": "kline_agent_xxx" } } } }Windows fallback
Some Windows MCP clients launch commands without a shell and cannot resolve
npx. In that case, route it throughcmd.exe:{ "mcpServers": { "klinepic": { "command": "cmd", "args": [ "/c", "npx", "-y", "github:sher1096/klinepic-agent-api-examples" ], "env": { "KLINE_AGENT_API_KEY": "k…