Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,17 @@ jobs:
- name: Run tests
run: npm test

- name: Publish
- name: Publish to npm
# Node 22 ships npm 10.x; Trusted Publisher OIDC token exchange
# needs npm >= 11.5.1, so invoke latest npm via npx just for this step.
run: npx --yes npm@latest publish --provenance --access public

- name: Install mcp-publisher
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher

- name: Authenticate to MCP Registry (GitHub OIDC)
run: ./mcp-publisher login github-oidc

- name: Publish to MCP Registry
run: ./mcp-publisher publish
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "recon-crypto-mcp",
"version": "0.2.0",
"version": "0.2.1",
"mcpName": "io.github.szhygulin/recon-crypto-mcp",
"description": "MCP server for AI agents (Claude Code, Claude Desktop, Cursor) to manage a self-custodial crypto portfolio through a Ledger hardware wallet. Reads on-chain wallet balances, ENS, token prices, and DeFi positions across Ethereum/Arbitrum/Polygon (Aave V3, Compound V3, Morpho Blue, Uniswap V3 LP, Lido stETH, EigenLayer), surfaces liquidation/health-factor alerts and protocol risk scores, then prepares unsigned EVM transactions (supply, borrow, repay, withdraw, stake, unstake, native/ERC-20 send, and LiFi-routed swaps and cross-chain bridges) that the user signs on their Ledger device via WalletConnect — private keys never leave the hardware wallet.",
"type": "module",
"main": "dist/index.js",
Expand Down
71 changes: 71 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.szhygulin/recon-crypto-mcp",
"title": "Recon Crypto MCP",
"description": "MCP server for AI agents (Claude, Cursor) to manage a self-custodial crypto portfolio on Ethereum/Arbitrum/Polygon via Ledger + WalletConnect. Reads on-chain DeFi positions (Aave V3, Compound V3, Morpho Blue, Uniswap V3 LP, Lido, EigenLayer), surfaces liquidation/health-factor alerts, and prepares unsigned EVM transactions (supply, borrow, repay, withdraw, stake, unstake, native/ERC-20 send, LiFi-routed swaps and bridges) that the user signs on their Ledger device. Private keys never leave the hardware wallet.",
"version": "0.2.1",
"websiteUrl": "https://github.com/szhygulin/recon-crypto-mcp",
"repository": {
"url": "https://github.com/szhygulin/recon-crypto-mcp",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "recon-crypto-mcp",
"version": "0.2.1",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "ETHEREUM_RPC_URL",
"description": "Custom Ethereum RPC endpoint (alternative to RPC_PROVIDER + RPC_API_KEY).",
"isRequired": false,
"isSecret": false
},
{
"name": "ARBITRUM_RPC_URL",
"description": "Custom Arbitrum RPC endpoint.",
"isRequired": false,
"isSecret": false
},
{
"name": "POLYGON_RPC_URL",
"description": "Custom Polygon RPC endpoint.",
"isRequired": false,
"isSecret": false
},
{
"name": "RPC_PROVIDER",
"description": "RPC provider name: 'infura' or 'alchemy'. Used together with RPC_API_KEY.",
"isRequired": false,
"isSecret": false
},
{
"name": "RPC_API_KEY",
"description": "API key for the chosen RPC_PROVIDER.",
"isRequired": false,
"isSecret": true
},
{
"name": "ETHERSCAN_API_KEY",
"description": "Etherscan API key for contract verification lookups.",
"isRequired": false,
"isSecret": true
},
{
"name": "ONEINCH_API_KEY",
"description": "1inch Developer Portal API key. Enables 1inch quote comparison in get_swap_quote.",
"isRequired": false,
"isSecret": true
},
{
"name": "WALLETCONNECT_PROJECT_ID",
"description": "WalletConnect Cloud project ID. Required for Ledger Live signing via WalletConnect.",
"isRequired": false,
"isSecret": true
}
]
}
]
}
Loading