Skip to main content
Glama

Convex MCP server

Official
by get-convex
bundled_js.rs1.24 kB
use value::sha256::Sha256Digest; /// This file includes the generated table of all of the system JS /// files, which we mount under "_system/" in the module namespace. mod system_udf_js_data { include!(concat!(env!("OUT_DIR"), "/system_udf_js_data.rs")); } /// This file includes the generated table of all of the system JS /// files, which we mount under "_system/" in the module namespace. mod node_executor_js_data { include!(concat!(env!("OUT_DIR"), "/node_executor_js_data.rs")); } /// Source and sourcemap pub type BundledJsFile = (&'static str, Option<&'static str>); pub fn system_udf_file(path: &str) -> Option<BundledJsFile> { system_udf_js_data::FILES.get(path).copied() } pub fn system_udf_files_sha256() -> Sha256Digest { system_udf_js_data::FILES_SHA256.into() } pub fn node_executor_file(path: &str) -> Option<BundledJsFile> { node_executor_js_data::FILES.get(path).copied() } pub fn node_executor_files_sha256() -> Sha256Digest { node_executor_js_data::FILES_SHA256.into() } #[cfg(any(test, feature = "testing"))] pub const OUT_DIR: &str = env!("OUT_DIR"); #[cfg(any(test, feature = "testing"))] pub const UDF_TEST_BUNDLE_PATH: &str = concat!(env!("OUT_DIR"), "/udf_test_bundle/fullConfig.json");

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