Skip to main content
Glama

Convex MCP server

Official
by get-convex
schema.ts833 B
// NOTE: You can remove this file. Declaring the shape // of the database is entirely optional in Convex. // See https://docs.convex.dev/database/schemas. import { defineSchema, defineTable } from "convex/server"; import { v } from "convex/values"; export default defineSchema( { documents: defineTable({ name: v.optional(v.string()), }), }, // If you ever get an error about schema mismatch // between your data and your schema, and you cannot // change the schema to match the current data in your database, // you can: // 1. Use the dashboard to delete tables or individual documents // that are causing the error. // 2. Change this option to `false` and make changes to the data // freely, ignoring the schema. Don't forget to change back to `true`! { schemaValidation: true }, );

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