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
import {
internalQuery,
internalMutation,
query,
mutation,
} from "./_generated/server";
/**
* Line numbers in this file matter!
*
* They are tested by `test_analyze_internal_function` so if you change this
* file you'll need to update the test.
*/
export const myInternalQuery = internalQuery(() => {
// intentional noop.
});
export const publicQuery = query(() => {
// intentional noop.
});
export const myInternalMutation = internalMutation(() => {
// intentional noop.
});
export const publicMutation = mutation(() => {
// intentional noop.
});