Skip to main content
Glama

Convex MCP server

Official
by get-convex
serialized_args_ext.rs490 B
use anyhow::Context; use errors::ErrorMetadata; use serde_json::Value as JsonValue; use sync_types::types::SerializedArgs; pub trait SerializedArgsExt { fn into_args(self) -> anyhow::Result<Vec<JsonValue>>; } impl SerializedArgsExt for SerializedArgs { fn into_args(self) -> anyhow::Result<Vec<JsonValue>> { serde_json::from_str(self.0.get()).context(ErrorMetadata::bad_request( "InvalidArguments", "Invalid arguments provided", )) } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'

If you have feedback or need assistance with the MCP directory API, please join our Discord server