Skip to main content
Glama

Convex MCP server

Official
by get-convex
definition.rs692 B
use std::sync::LazyLock; use common::bootstrap_model::components::definition::ComponentDefinitionMetadata; use value::TableName; use crate::system_tables::{ SystemIndex, SystemTable, }; pub static COMPONENT_DEFINITIONS_TABLE: LazyLock<TableName> = LazyLock::new(|| { "_component_definitions" .parse() .expect("Invalid built-in _component_definitions table") }); pub struct ComponentDefinitionsTable; impl SystemTable for ComponentDefinitionsTable { type Metadata = ComponentDefinitionMetadata; fn table_name() -> &'static TableName { &COMPONENT_DEFINITIONS_TABLE } fn indexes() -> Vec<SystemIndex<Self>> { Vec::new() } }

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