Grafbase integration
Grafbase is a platform that accelerates the development of GraphQL APIs,…
- Provider
- grafbase
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 28 available
Quick start
Call Grafbase from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Grafbase's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"GRAFBASE_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Grafbase API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
28 actions exposed via the
Grafbase integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
GRAFBASE_ADD_ZITADEL_REDIRECT -
GRAFBASE_ASSIGN_TEAM_ROLE -
GRAFBASE_DELETE_API_KEY -
GRAFBASE_DELETE_AUDIT_LOG -
GRAFBASE_DELETE_EXTENSION -
GRAFBASE_DELETE_MCP_SERVER -
GRAFBASE_DELETE_SCHEMA -
GRAFBASE_DELETE_SCHEMA_CHECK -
GRAFBASE_DELETE_TEAM -
GRAFBASE_DISABLE_MCP -
GRAFBASE_ENABLE_MCP -
GRAFBASE_GET_AUDIT_LOG
Show all 28 actions
-
GRAFBASE_GET_EXTENSION_BY_NAME -
GRAFBASE_GET_EXTENSION_VERSION_BY_NAME_AND_VERSION -
GRAFBASE_GET_FEDERATED_SCHEMA -
GRAFBASE_GET_INVITATION -
GRAFBASE_GET_NOTIFICATIONS_INBOX_MESSAGES -
GRAFBASE_GET_SCHEMA_CHECK -
GRAFBASE_GET_SUBGRAPH_SCHEMA -
GRAFBASE_LIST_API_KEYS -
GRAFBASE_LIST_AUDIT_LOGS -
GRAFBASE_LIST_EXTENSIONS -
GRAFBASE_LIST_MCP_SERVERS -
GRAFBASE_LIST_SCHEMA_CHECKS -
GRAFBASE_LIST_SCHEMAS -
GRAFBASE_LIST_SUBGRAPHS -
GRAFBASE_MARK_NOTIFICATIONS_AS_READ -
GRAFBASE_REMOVE_GRAPH_OWNER
Build with Grafbase
Open OverSkill, describe what you want to build, and reference Grafbase in your prompt — the AI will wire up the integration automatically.