delta-exchange-mcp
Ask about Delta Exchange India in plain English — live prices, option chains, your own positions — from Claude or your editor.
Official MCP (Model Context Protocol) server for Delta Exchange India: market data for everyone, your own account read-only with an API key, and live trading only behind an explicit opt-in flag.
[!NOTE] Beta. Functional and used internally, but the tool surface and configuration may still change. Please open an issue for bugs, missing tools, or rough edges — early reports directly shape what ships next.
Use it — no setup
Hit Download for Claude Desktop above and double-click the file. Claude Desktop shows a
form, then installs the server — no config file, and no need to install uv or Python
first: the app fetches both itself. Unlike the Cursor and VS Code buttons, this one is a
file download rather than a link that configures your editor; bundles are read only by Claude
Desktop, Claude Code, and MCP for Windows.
The form has four fields:
- Environment — which exchange to talk to:
india_prodfor the real one, orindia_testnetfor the practice site at demo.delta.exchange. - API key and API secret — fill them in to let the assistant read your own account. Create them under Account → API Keys with the Read Data permission, which is the one that allows viewing but not trading. Leaving them empty gives you market data only, unless you have already put a key in the shared file, in which case that one is used.
- Mode — defaults to
read, which cannot place, change or cancel orders. Setting it totradeadds the tools that do.
[!WARNING]
trademode places real orders with no size cap, sized in contracts rather than coins. It also needs an API key with trading permission, not just Read Data. Leave Mode onreadunless placing live orders is exactly what you want.
Claude Desktop — JSON config by hand (also how you pin a specific version)
Open Settings → Developer → Edit config, or edit directly at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"]
}
}
}
Quit and relaunch Claude Desktop for changes to take effect.
Wire it into your editor
Prerequisite: uv installed
on your machine. Sanity-check:
uvx delta-exchange-mcp --help
The server runs local stdio only: your MCP client launches it as a subprocess, and your
API keys never leave your machine — they live in one file that every client reads, not in
each client's config. See Add your API key. uvx resolves the latest
published version from PyPI on each launch. To pin a specific version, use uvx "delta-exchange-mcp==0.4.2". Pin 0.4.2
or newer: earlier versions do not start on a fresh install (see
Troubleshooting).
Cursor and VS Code install with one click from the buttons above; every other client takes a CLI one-liner or a short config block — all covered per client under Install in your MCP client.
What you can ask
What's the current BTCUSD mark price and 24h range?
Show the options chain for BTC expiring this Friday.
What positions do I have open and what's my total unrealized PnL?
List my fills from the last 24 hours grouped by symbol.
How much USDT do I have free vs blocked in margin?
The assistant picks the right tool based on the question — you never name a tool. A real exchange, verbatim from a Claude Desktop session against the live API:
eth prices, use delta-exchange
ETHUSD Perpetual (Delta Exchange): $1,856.25 (last) — down 3.15% in 24h (24h range: $1,847.25 – $1,936.25). Spot index: $1,857.19. Mark price: $1,856.07. Funding rate: −0.284%. Open interest: ~$54.2M.
Capabilities
What the server can do is decided entirely by settings — three tiers, each a strict superset of the one above it:
| Tier | You set | Unlocks | Audit-logged |
|---|---|---|---|
| Market data | nothing | Prices, order books, option chains, candles, funding / OI history, indices | — |
| Account, read-only | an API key — see Add your API key | Your positions, orders, fills, balances, trading stats, profile | — |
| Trading | a key plus DELTA_MCP_MODE=trade in one client's config |
Place / edit / cancel orders, brackets, leverage, margin, close-all | Yes |
A key without its matching secret is ignored and you stay on market data — the two are always used together.
Trading (opt-in)
The flag is checked before the first tool list of a session, so the tools are absent from that list entirely rather than present and refusing — an assistant that never sees them cannot be talked into using them. Turning trading off removes those tools immediately; turning it on still requires a new session.
[!WARNING] What trade mode will not do: cap notional or position size, ask you to confirm before sending, convert between contracts and coins, or judge whether an order makes sense. Those are your responsibility. Try
DELTA_MCP_ENV=india_testnetfirst.
The quickest way is the credential form: ask your assistant to connect your Delta account, pick Read and trade in "What should the assistant be able to do?", and restart that app. Trading turns on for that app alone — every other client on the machine stays read-only, because the form stores the choice under that client's own name rather than a shared one.
Or set it yourself, in the config of the one client you mean to trade from:
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"],
"env": { "DELTA_MCP_MODE": "trade" }
}
This is the one setting that is never read from the shared file described in
Add your API key under its own name. Everything else there is
convenience; this one places real orders, so it is always tied to one client rather than
arming every assistant on the machine at once. The form does not change that — it writes
DELTA_MCP_MODE_<READABLE>_<DIGEST>, keyed on the exact name the client gives during its
handshake, and that key is read only by a client reporting that exact name. The readable
part is just a label; the digest keeps punctuation variants from collapsing onto one key.
This is convenience scoping, not authentication — a client can claim the same name.
DELTA_MCP_MODE in a client's own config still wins over it.
Safety features:
- Dry run. Every mutating tool takes a
dry_runflag. Whentrue, the tool validates and returns the exact payload it would send, without sending it. Ask the assistant to "place the order as a dry run first." - Audit log. Every mutation (real or dry-run) is appended as one JSON line to
~/.delta-exchange-mcp/audit/(owner-only0600). On by default in trade mode; disable withDELTA_MCP_AUDIT=off. The log records the tool, params, and result/order id — never credentials. Ask the assistant "where is the audit log?". - No silent retries. Unlike GET reads, mutations are never auto-retried on timeout or rate-limit — a failure is surfaced, not re-sent.
- API key permission. The key must have Trading enabled in Delta API management, and the requesting IP whitelisted.
Add your API key
You may not need one. Market data works with no key at all, so if you only want prices, option chains or funding history, skip this section entirely.
To let an assistant read your own account, the key goes in one file, once — not into each client's config:
~/.delta-exchange-mcp/config.env
Every MCP client on your machine reads it, so a key set here works in Claude Desktop,
Cursor, Claude Code and everything else at the same time. The server creates the file the
first time it runs, with instructions inside it, and prints the path in its startup line.
It is created owner-only (0600).
Three ways to fill it in. Pick one — they all write the same file.
In the conversation, without leaving it. Ask your assistant to connect my Delta account and a small form appears inline:
Connect my Delta Exchange account
It asks four things: which site the key was made on (delta.exchange or the practice site at demo.delta.exchange), what the assistant should be allowed to do (read only, or read and trade), then the key and the secret. It checks the key against Delta before saving, and once it saves it replaces itself with the account it connected, so you can see which one you got.
What you type in that form goes straight to the file. It is not part of the conversation and the assistant cannot read it, because the form runs in its own frame rather than in the chat. This needs a client that renders in-chat forms — Claude Desktop and the Codex desktop app do today; if nothing appears, yours doesn't, and the assistant will tell you so and point you at one of the other two ways.
[!IMPORTANT] Sending your key to the assistant as an ordinary chat message is not the same thing. A message is in the assistant's context and is stored in the conversation. The form exists precisely so it isn't. If an assistant offers to take the key that way, decline.
At a terminal, which prompts with the input hidden and checks the key works before saving anything:
uvx delta-exchange-mcp login
By hand, if you'd rather. Open the file and fill in the three lines already waiting
there — plain NAME=value, no punctuation to get wrong:
DELTA_API_KEY=your-key-here
DELTA_API_SECRET=your-secret-here
DELTA_MCP_ENV=india_prod
The terminal and by-hand routes normally need your MCP client restarted afterwards; asking for the connection status can also make a running server reconcile safe external changes. The in-chat form usually needs neither: it atomically moves market and account calls to the saved environment and key, registers the account tools there, and tells the client its tool list changed — so first-time setup, environment changes, and key rotation become usable in the same conversation. Enabling trade mode still needs a new session. Turning it off takes effect immediately.
If your client has its own place to put credentials — the Claude Desktop bundle's form, VS Code's prompts, the Codex desktop app's fields — those still work and take precedence over this file.
Getting the key itself
- Create it at delta.exchange/app/account/manageapikeys (testnet: demo.delta.exchange).
- Both
api_keyandapi_secretare shown once at creation. Save the secret immediately; it can't be re-derived. - Read Data permission is enough for the read tiers. Trading permission is needed only for trade mode.
- IP whitelisting is only for trading. Delta requires whitelisted IPs to create a key with Trading permission; a read-only key needs none. If a key does carry a whitelist, Delta blocks other IPs and names the one it saw in the error.
- Match the environment: a key from delta.exchange works only with
india_prod, one from demo.delta.exchange only withindia_testnet. Mixing them returnsInvalidApiKey.
The in-chat form and login both check all four for you and refuse to save a key Delta
rejects, so you find out while you still have the key in front of you rather than the next
time you ask a question. Both also write DELTA_MCP_ENV alongside the key, so point 5
takes care of itself.
Settings reference
Each setting is read from your MCP client first, then from ~/.delta-exchange-mcp/config.env.
A value your client sets always wins; leaving it empty there means "not answered" and falls
through to the file.
| Var | Default | Shared file? | Purpose |
|---|---|---|---|
DELTA_MCP_ENV |
india_prod |
yes | india_prod, india_testnet, or india_devnet. |
DELTA_API_KEY |
(unset) | yes | API key. Optional; when set with DELTA_API_SECRET, account tools register. |
DELTA_API_SECRET |
(unset) | yes | API secret matching DELTA_API_KEY. |
DELTA_MCP_MODE |
read |
no | trade registers the trading tools (requires API key + secret). Per client on purpose — see Trading. The credential form writes a per-client DELTA_MCP_MODE_<READABLE>_<DIGEST> into the shared file instead; this name still wins over it. |
DELTA_MCP_DEBUG |
(unset) | yes | 1/true/yes/on writes HTTP request URLs and response bodies to a log file (see Debugging). |
DELTA_MCP_DEBUG_FILE |
(auto) | yes | Override the debug log path. Default: ~/.delta-exchange-mcp/logs/debug-<timestamp>-<pid>.log. |
DELTA_MCP_AUDIT |
(on in trade mode) | yes | Set off/false/0/no to disable the trading audit log. On by default whenever DELTA_MCP_MODE=trade. |
DELTA_MCP_AUDIT_FILE |
(auto) | yes | Override the audit log path. Default: ~/.delta-exchange-mcp/audit/audit-<timestamp>-<pid>.log. |
DELTA_MCP_CONFIG_FILE |
(auto) | n/a | Move the shared file itself. Default: ~/.delta-exchange-mcp/config.env. |
The key and its secret are always taken from the same place. If either is set in your client, both come from there; otherwise both come from the file. That prevents pairing a stale key from your shell with a secret from the file — a combination that was never issued together, and which fails every signed call while the server reports the account tools as available.
Install in your MCP client
None of the snippets below carry credentials, because they don't need to — put the key in
the shared file once instead. Set DELTA_MCP_ENV=india_testnet there
for testnet.
Let your coding agent set it up
Copy this into Claude Code, Codex, Cursor, or any agent that can edit files on your machine. Claude Desktop's chat is not one of those — it has no access to your filesystem, so use the Download for Claude Desktop bundle at the top of this page instead.
Install the Delta Exchange MCP server into my MCP client: uvx delta-exchange-mcp, local
stdio, entry name delta-exchange-mcp, no env block. Leave my other servers alone, and
never ask me for my API key. Verify with `uvx delta-exchange-mcp --version` — never run
it bare, it serves stdio and won't exit. Then tell me to restart the app and stop there —
don't authenticate me first, don't send me to a terminal, and don't start a new chat. We
carry on in this one after the restart.
If you can't edit files on this machine, say so and read the README below for the
simplest path for my client — don't improvise a config for me to paste.
If you don't know where my client keeps its MCP config, read
https://raw.githubusercontent.com/delta-exchange/delta-exchange-mcp/main/README.md
The entry it writes holds no credentials and needs none — the server comes up on market data and works the moment you restart. Your key goes in the shared file instead, which is why the agent never has to touch it. To set it up by hand, follow the steps for your client below.
Restart the app, then carry on in the same conversation: ask it to connect your Delta account and the form opens there. The restart is needed because a client builds its list of tools when it starts, so a server added after that isn't connected yet — which is also why an assistant asked to authenticate you before restarting will reach for a terminal instead. It has nothing else to offer at that point.
Cursor
Cursor shows an approval dialog and writes the entry itself. DELTA_API_KEY and DELTA_API_SECRET arrive empty, so the market-data tools work immediately — fill them in, in the entry it creates, to reach your account. They are empty rather than placeholder text on purpose: a non-empty key registers the account tools and then fails every call, whereas an empty one keeps the server cleanly in public-data mode.
Cursor — JSON config by hand
Global: ~/.cursor/mcp.json (or %USERPROFILE%\.cursor\mcp.json on Windows). Project-scoped alternative: .cursor/mcp.json in the repo root.
{
"mcpServers": {
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"]
}
}
}
Restart Cursor or open Settings → Tools & MCP to refresh.
VS Code (GitHub Copilot)
VS Code prompts for the key and secret with the input masked, offers the environment as a dropdown, and writes the entry itself — nothing to edit afterwards. Leave both credential prompts empty for public-data-only mode.
VS Code — JSON config by hand
Add to .vscode/mcp.json in your workspace. The top-level key is servers and each entry needs an explicit "type": "stdio". Declaring the credentials as inputs means VS Code prompts for them once and stores them itself, so your secret never lands in a file you might commit — and pickString makes the environment a dropdown rather than free text you could typo:
{
"inputs": [
{
"type": "promptString",
"id": "delta-api-key",
"description": "Delta API key (leave empty for market data only)",
"password": true
},
{
"type": "promptString",
"id": "delta-api-secret",
"description": "Delta API secret (must match the key)",
"password": true
},
{
"type": "pickString",
"id": "delta-env",
"description": "Delta Exchange environment",
"options": ["india_prod", "india_testnet"],
"default": "india_prod"
}
],
"servers": {
"delta-exchange-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["delta-exchange-mcp"],
"env": {
"DELTA_MCP_ENV": "${input:delta-env}",
"DELTA_API_KEY": "${input:delta-api-key}",
"DELTA_API_SECRET": "${input:delta-api-secret}"
}
}
}
}
The env block is what makes those prompts happen — VS Code only asks for an input that
something references, so without it the three declarations above are inert and you are
never asked for a key.
Leave both prompts empty for public-data-only mode. A key entered here is passed by VS Code on every launch and takes precedence over the shared file, so the in-chat form cannot replace it — clear these prompts first if you want to manage the key there instead.
Claude Code
claude mcp add delta-exchange-mcp \
--scope user -- uvx delta-exchange-mcp
--scope user makes the server available across all projects. Verify with claude mcp list.
Codex
codex mcp add delta-exchange-mcp -- uvx delta-exchange-mcp
Verify with codex mcp list.
OpenClaw
openclaw mcp add delta-exchange-mcp \
--command uvx \
--arg delta-exchange-mcp
Repeat --arg once per value. Writes to ~/.openclaw/openclaw.json, where MCP servers live
under mcp.servers rather than a top-level mcpServers key.
Codex — TOML config, or the desktop app's form
Write ~/.codex/config.toml by hand:
[mcp_servers.delta-exchange-mcp]
command = "uvx"
args = ["delta-exchange-mcp"]
Desktop app: go to Plugins → MCPs → Connect to a custom MCP, leave Type as STDIO, and fill in:
| Field | Value |
|---|---|
| Name | delta-exchange-mcp |
| Command to launch | uvx (uvx.exe on Windows) |
| Arguments | delta-exchange-mcp |
| Environment variables | leave empty |
Leave the other fields empty, then restart the app.
Windsurf
JSON config
Add to ~/.codeium/windsurf/mcp_config.json (macOS / Linux) or %USERPROFILE%\.codeium\windsurf\mcp_config.json (Windows). UI route: Settings → Cascade → Plugins (MCP servers) → Manage Plugins → View raw config.
{
"mcpServers": {
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"]
}
}
}
Zed
JSON config
Add to ~/.config/zed/settings.json (user-level) or .zed/settings.json (project-level). Zed
calls the top-level key context_servers rather than mcpServers; the entry itself has the
usual shape:
{
"context_servers": {
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"]
}
}
}
Google Antigravity
JSON config
Add to ~/.gemini/config/mcp_config.json — note the .gemini directory, which Antigravity
shares rather than using one of its own. In the IDE you can reach the same file without
typing a path: the ... menu at the top of the agent panel → MCP Servers → Manage MCP
Servers → View raw config. In the CLI, type /mcp.
{
"mcpServers": {
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"]
}
}
}
Prefer that global file over a project-local one: a project-level mcp_config.json is
reported to be read and then silently ignored. Reopen the MCP panel after editing so the
server actually spawns, and check the credentials really arrived — there are reports of env
values not reaching the process, in which case the market-data tools work but account tools
stay absent.
Safety
- Read-only by default. Trading tools register only with the explicit
DELTA_MCP_MODE=tradeopt-in; otherwise every tool is a GET and the server cannot place, edit, or cancel orders. - Auditable mutations. When trading is on, every mutation is dry-runnable and written to an owner-only audit log; mutations are never auto-retried.
- Local stdio only. Per-user keys never leave your machine; no shared hosted endpoint.
- Read the code. It's a financial-tool MCP; treat it like one.
Updating
uvx caches the resolved package, so a new PyPI release isn't picked up automatically. To move to the latest version:
-
If your config pins a version (
uvx "delta-exchange-mcp==0.4.2"), bump the pin to the new version, or drop it to float to latest. -
Refresh the
uvxcache so it fetches the new build:uvx --refresh delta-exchange-mcp --help
-
Reload the server so your client respawns the process — in Claude Code, run
/mcpand reconnectdelta-exchange-mcp, or restart the client. Other clients: restart the app.
New tools appear only after the respawn. The MCP list_changed notification refreshes the tool list of an already-running server; it does not swap the underlying package version, which always requires a restart.
Troubleshooting
The key form doesn't appear in the chat
You asked the assistant to connect your account, and it replied with a file path and a command instead of showing a form.
That is the intended fallback, not a failure: rendering a form inline is an optional part of MCP that only some clients implement, and the server cannot tell in advance which ones do — Claude Desktop, for instance, renders these forms without announcing that it can. So the server always returns working instructions alongside the form, and on a client that shows nothing you see only the instructions.
Use one of the other two ways: uvx delta-exchange-mcp login, or open
~/.delta-exchange-mcp/config.env and fill in the three lines. Both write the same file
the form would have.
The form saved my key, but the assistant still can't see my account
The form says it saved, and names a setting your client sets in its own configuration.
That is the whole failure, stated plainly: a value in your client's MCP entry — or in the fields it asked you to fill in when you installed it — is read before the shared file and wins over it. So the form verified your key, saved it correctly, and the server carries on signing with whatever your client passes instead. Restarting does not help, because the client passes its own value again every time it starts.
Clear those fields from that client's entry, then restart it. Which setting is at fault is
named in the message the form shows. uvx delta-exchange-mcp login runs the same check and
warns on stderr, though there it reports what your shell is setting, since that is the
environment it can see.
ModuleNotFoundError: No module named 'mcp.server.fastmcp'
Your client shows the server as failed, and the process writes this traceback to stderr.
Version 0.4.1 and all earlier versions declare mcp>=1.12.4 with no upper limit. The mcp
package published 2.0.0 on 28 July 2026, and 2.0.0 removed the mcp.server.fastmcp module.
uvx resolves from the declared range and ignores uv.lock, so a fresh install gets 2.0.0
and the server stops at import. Existing installs and uv sync checkouts are not affected.
Move to 0.4.2 or a newer version, which sets an upper limit of mcp<2:
uvx --refresh delta-exchange-mcp --help
To stay on an older version, set the limit yourself:
uvx --with "mcp<2" "delta-exchange-mcp==0.4.1"
Add the same --with argument to your MCP client config if you pin an older version there:
"delta-exchange-mcp": {
"command": "uvx",
"args": ["--with", "mcp<2", "delta-exchange-mcp==0.4.1"]
}
Debugging / reporting a bug
To capture exactly what the server sends and receives — useful when a tool returns
something unexpected — set DELTA_MCP_DEBUG=1 in your MCP client config:
"delta-exchange-mcp": {
"command": "uvx",
"args": ["delta-exchange-mcp"],
"env": { "DELTA_MCP_DEBUG": "1" }
}
Or set it once for every client by adding DELTA_MCP_DEBUG=1 to
the shared file.
Restart the client and re-run the action. Each HTTP call (request URL incl. filter params +
response body + status) is logged to ~/.delta-exchange-mcp/logs/. The exact path is printed
on startup and you can also just ask the assistant: "where is the debug log?".
The log never contains your API key, secret, or request signatures — but response bodies do contain your account data (balances, positions, transactions). Review before sharing.
Running a dev / unreleased branch
To test an unreleased commit, branch, or fork before it's on PyPI, swap uvx delta-exchange-mcp for uvx --from git+<repo-url>@<ref> delta-exchange-mcp. <ref> can be a branch, tag, or commit SHA.
CLI sanity check:
uvx --from git+https://github.com/delta-exchange/delta-exchange-mcp.git@develop delta-exchange-mcp --help
uv caches the git resolution, so to pick up new commits on the same branch:
uvx --refresh --from git+https://github.com/delta-exchange/delta-exchange-mcp.git@develop delta-exchange-mcp --help
In your MCP client config
Replace args in any snippet above with the git+ form. Three flavours:
Claude Code:
claude mcp add delta-exchange-mcp-dev \
--scope user \
-- uvx --from git+https://github.com/delta-exchange/delta-exchange-mcp.git@develop delta-exchange-mcp
Cursor / Windsurf / Claude Desktop (any mcpServers JSON):
{
"mcpServers": {
"delta-exchange-mcp-dev": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/delta-exchange/delta-exchange-mcp.git@develop",
"delta-exchange-mcp"
]
}
}
}
Zed (context_servers key):
{
"context_servers": {
"delta-exchange-mcp-dev": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/delta-exchange/delta-exchange-mcp.git@develop",
"delta-exchange-mcp"
]
}
}
}
Register the dev server under a separate name (e.g. delta-exchange-mcp-dev) so it doesn't collide with the PyPI install. The git+URL form rebuilds from source on each launch and is meant for testing unreleased changes — stick with uvx delta-exchange-mcp for everyday use.
Development
uv sync # install deps
uv run pytest # run tests (no network, respx-mocked)
uv run ruff check src tests # lint
uv run delta-exchange-mcp # run server (stdio)
Testing with MCP Inspector
# stdio CLI mode
bash scripts/inspect.sh --cli --method tools/list
bash scripts/inspect.sh --cli --method tools/call \
--tool-name get_ticker --tool-arg symbol=BTCUSD
# with auth
DELTA_API_KEY=... DELTA_API_SECRET=... \
bash scripts/inspect.sh --cli --method tools/call --tool-name get_wallet_balances
# web UI
bash scripts/inspect.sh # → http://localhost:6274
Maintainers: see RELEASING.md for the release procedure.
Roadmap
- Now: public market data, authenticated read-only account access, and opt-in trading with dry-run and an audit log.
- Next: richer guardrails (notional / position-size caps, confirmation prompts).
Feedback & issues
This is the first public cut and we want to make it better. Please file:
- Bugs (incorrect data, signing/auth errors, crashes)
- Missing tools or fields you'd want exposed
- Rough edges in setup, docs, or error messages
- Anything you'd build on top of this if a primitive existed
→ github.com/delta-exchange/delta-exchange-mcp/issues
Please redact api_key / api_secret from any logs or screenshots before attaching.
MIT licence · Source · Issues · PyPI
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file delta_exchange_mcp-0.6.0.tar.gz.
File metadata
- Download URL: delta_exchange_mcp-0.6.0.tar.gz
- Upload date:
- Size: 81.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d99af23345f942efc6fe56706af33c6c846938174d55b6db9fbd7d6444bbc67b
|
|
| MD5 |
722d80713e5e9338fe689e9aeaa5b548
|
|
| BLAKE2b-256 |
4544980eb86c3f5a03357a6d3d641fad9ab6b25983ded33722f9ccc59f182a1b
|
File details
Details for the file delta_exchange_mcp-0.6.0-py3-none-any.whl.
File metadata
- Download URL: delta_exchange_mcp-0.6.0-py3-none-any.whl
- Upload date:
- Size: 79.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba08b8c2fb906bf244de2e76a501dd1cfc0d70f8e5243140757219177affb208
|
|
| MD5 |
dbfdd76783a3a26f67a8d1b3bbec8005
|
|
| BLAKE2b-256 |
ab6d48f6aa84a1407083249f10b4972fad144ac4f6e93b5f9809a829ff20c620
|