Skip to main content
Glama

Convex MCP server

Official
by get-convex
args_structs.rs791 B
use common::components::ComponentPath; use isolate::UdfArgsJson; use keybroker::Identity; use serde::Deserialize; use utoipa::ToSchema; use crate::admin::must_be_admin; #[derive(Deserialize, ToSchema)] #[serde(rename_all = "camelCase")] /// This struct should only be used for endpoints that allow calling functions /// inside components. Requires admin key. pub struct UdfPostRequestWithComponent { component_path: Option<String>, pub path: String, #[schema(value_type = Object)] pub args: UdfArgsJson, pub format: Option<String>, } impl UdfPostRequestWithComponent { pub fn component_path(&self, identity: &Identity) -> anyhow::Result<ComponentPath> { must_be_admin(identity)?; ComponentPath::deserialize(self.component_path.as_deref()) } }

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