MCP Endpoint
POST requests to https://mikera1337-convex-testnet.hf.space/mcp
This peer provides MCP JSON-RPC access for LLMs and AI tools
POST requests to https://mikera1337-convex-testnet.hf.space/mcp
This peer provides MCP JSON-RPC access for LLMs and AI tools
| Field | Value | Notes |
|---|---|---|
| networkId | "2df4c1785eea5c4b04452f102d38373c0a58773a7334d484aa90d0dc4a942a29" | |
| title | "Convex MCP" | |
| peerKey | "65f7aef74c920da7da0550d3694833547c0c9f85118ee14bb834e502c92096f4" | |
| name | "convex-mcp" | |
| version | "0.8.3-SNAPSHOT" |
| Title | Name | Description |
|---|---|---|
| Convex Query | query | Execute a Convex Lisp query. Queries are fast and cheap, and do not affect the global state. |
| Prepare Transaction | prepare | Prepare (but do not send) a Convex transaction. This mirrors the /api/v1/transaction/prepare endpoint and returns the encoded transaction along with the sequence that should be signed. |
| Convex Transaction | transact | Submit a Convex transaction. Transactions require an origin account with a CVM balance and a valid Ed25519 signature. Transactions are atomic operations on the CVM that can update global state and take economic actions (e.g. interact with digital assets and smart contracts) |
| Encode CAD3 | encode | Encode a CVX literal into CAD3 multi-cell bytes, mirroring /api/v1/data/encode. |
| Decode CAD3 | decode | Decode CAD3 multi-cell bytes back into a CVX literal, mirroring /api/v1/data/decode. |
| Submit Prepared Transaction | submit | Submit a previously prepared transaction. Requires the transaction hash reference, the account public key, and the Ed25519 signature over the provided hash. |
| Hash Calculator | hash | Compute a cryptographic hash (sha256 or sha3) of supplied data |
| Value Signer | sign | Sign raw data (provided as a hex string) using a provided Ed25519 seed |
| Peer Status | peerStatus | Return current peer status information |
| Key Pair Generator | keyGen | Generate a new Ed25519 key pair. Optionally provide a seed (32-byte hex string), otherwise a secure random seed will be generated. |
| Signature Validator | validate | Validate an Ed25519 signature. Takes a public key, signature, and message bytes, and returns true if the signature is valid, false otherwise. |
| Create Account | createAccount | Create a new Convex account with the specified public key. Optionally request faucet coins (in copper). Requires a peer willing to accept faucet requests. |
| Describe Account | describeAccount | Get symbol metadata for an account. Returns a map of Symbol -> Symbol metadata (possibly nil). |
| Symbol Lookup | lookup | Look up a symbolic value in an account. Returns whether the symbol exists, its value (optionally using a path), and its metadata. |
| Resolve CNS Name | resolveCNS | Resolves a Convex Name Service (CNS) name to its full record, including value, controller, metadata, and child node. |