MCP server for NEAR wallet creation, balance checks, and transaction signing.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"near-wallet-manager": {
"command": "mcp-near-wallet-manager"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for NEAR wallet operations with three production tools:
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-near-wallet-manager' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-near-wallet-manager against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for io.github.mastrophot/near-wallet-manager and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for NEAR wallet operations with three production tools:
create_walletcheck_balancesign_transactionDesigned for agent workflows where wallets must be provisioned, checked, and used for deterministic signing.
npm install -g mcp-near-wallet-manager
{
"mcpServers": {
"near-wallet-manager": {
"command": "mcp-near-wallet-manager"
}
}
}
create_wallet{
"network": "testnet",
"include_private_key": true
}
check_balance{
"account_id": "near",
"network": "mainnet"
}
sign_transaction{
"signer_id": "alice.testnet",
"signer_private_key": "ed25519:...",
"receiver_id": "bob.testnet",
"nonce": "7",
"recent_block_hash": "11111111111111111111111111111111",
"actions": [
{
"type": "transfer",
"deposit_yocto": "1"
}
]
}
npm install
npm run check
create_wallet may return a private key: treat as sensitive secret.mcp-near-wallet-managerdeliverables/agent-framework-integration.mdserver.jsonMIT