Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Armor Crypto MCP Server
shield

Armor Crypto MCP Server MCP Server

Complete crypto ecosystem integration

cryptodefiswapstrading

About

## Armor Crypto MCP Server: Cryptographic Operations The **Armor Crypto MCP Server** provides cryptographic primitives and operations for Google Antigravity, enabling developers to perform encryption, signing, hashing, and key management for secure applications. ### Why Armor Crypto MCP? - **Encryption** - AES, RSA, and modern ciphers - **Signing** - ECDSA, Ed25519, and more - **Hashing** - SHA-256, Keccak, Blake2 - **Key management** - Generate and manage keys - **Encoding** - Base64, hex, and more ### Key Features #### 1. Encryption/Decryption ```python # Generate encryption key key = await mcp.call("armor", "generate_key", { "algorithm": "aes-256-gcm" }) # Encrypt data encrypted = await mcp.call("armor", "encrypt", { "algorithm": "aes-256-gcm", "key": key, "plaintext": "secret message" }) print(f"Ciphertext: {encrypted[\"ciphertext\"]}") # Decrypt data decrypted = await mcp.call("armor", "decrypt", { "algorithm": "aes-256-gcm", "key": key, "ciphertext": encrypted["ciphertext"], "nonce": encrypted["nonce"] }) ``` #### 2. Digital Signatures ```python # Generate key pair keypair = await mcp.call("armor", "generate_keypair", { "algorithm": "ed25519" }) # Sign message signature = await mcp.call("armor", "sign", { "algorithm": "ed25519", "private_key": keypair["private_key"], "message": "data to sign" }) # Verify signature valid = await mcp.call("armor", "verify", { "algorithm": "ed25519", "public_key": keypair["public_key"], "message": "data to sign", "signature": signature }) ``` #### 3. Hashing ```python # Hash data hash_result = await mcp.call("armor", "hash", { "algorithm": "sha256", "data": "data to hash" }) print(f"Hash: {hash_result}") # Keccak for Ethereum keccak = await mcp.call("armor", "hash", { "algorithm": "keccak256", "data": "0x..." }) ``` #### 4. Key Derivation ```python # Derive key from password derived = await mcp.call("armor", "derive_key", { "algorithm": "argon2id", "password": "user_password", "salt": "random_salt", "key_length": 32 }) # BIP-39 mnemonic mnemonic = await mcp.call("armor", "generate_mnemonic", { "words": 24 }) ``` ### Configuration ```json { "mcpServers": { "armor": { "command": "npx", "args": ["-y", "@anthropic/mcp-armor-crypto"] } } } ``` ### Use Cases **Data Encryption**: Protect sensitive data. **Digital Signatures**: Sign and verify messages. **Password Hashing**: Secure password storage. **Blockchain Keys**: Generate wallet keys. The Armor Crypto MCP Server enables secure cryptographic operations.

Installation

Configuration
{
  "mcpServers": {
    "armor-crypto": {
      "mcpServers": {
        "armor-crypto": {
          "env": {
            "WALLET_PRIVATE_KEY": "YOUR_PRIVATE_KEY"
          },
          "args": [
            "-y",
            "@armorwallet/armor-crypto-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Configure wallet private key securely
  2. 2Supports DeFi operations
  3. 3Event-based trading features

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers