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
set fallback := true
set shell := ["bash", "-uc"]
set positional-arguments
_default:
@just --list
test *ARGS:
just test-conductor "$@"
# Run with `RUST_LOG=info` to get backend logs too
# Run open source tests locally (includes build steps)
test-open-source *ARGS:
#!/usr/bin/env bash
just rush build -t .
cargo build --bin backend-harness --bin convex-local-backend
just _test open-source-debug "$@"
test-conductor *ARGS:
#!/usr/bin/env bash
just rush build -t .
cargo build --bin backend-harness --bin usher --bin conductor --bin funrun
just _test-conductor "$@"
_test-conductor *ARGS:
#!/usr/bin/env bash
export DEPLOYMENT_URL="http://carnitas.local.convex.cloud:8002"
export SITE_URL="http://carnitas.local.convex.site:8002"
just _test conductor-debug "$@"
test-self-hosted *ARGS:
#!/usr/bin/env bash
just rush build -t .
cargo build backend-harness
just _test self-hosted-backend "$@"
docker compose -f ../../self-hosted/docker/docker-compose.yml down
# Run tests without building the NPM packages or binaries
_test *ARGS:
#!/usr/bin/env bash
export ACTIONS_USER_TIMEOUT_SECS=20
export DATABASE_UDF_SYSTEM_TIMEOUT_SECONDS=30
export DATABASE_UDF_USER_TIMEOUT_SECONDS=10
export MIN_NPM_VERSION_FOR_STRING_IDS="0.0.0"
export CONVEX_TRACE_FILE="1" # log to a file
export RUST_LOG=${RUST_LOG:-0}
echo "Additional logs are available in npm-packages/js-integration-tests/*.log"
UDF_USE_FUNRUN=true ../../target/debug/backend-harness --provisioner "$1" \
--package-dir . -- npm run test-integration -- "${@:2}"