MCP Endpoint
POST requests to https://convex.testing.lt/mcp
This peer provides MCP JSON-RPC access for LLMs and AI tools
POST requests to https://convex.testing.lt/mcp
This peer provides MCP JSON-RPC access for LLMs and AI tools
| Field | Value | Notes |
|---|---|---|
| networkId | "b0e44f2a645abfa539f5b96b7a0eabb0f902866feaff0f7c12d1213e02333f13" | |
| title | "Convex MCP" | |
| peerKey | "c843f9aec14b276165abc8196cd8c5d3d6ae2ffc917540b1d0ace3e419661da4" | |
| 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 key information for an account including defined symbols with metadata and summary of account status. |
| 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. |