We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c548559 commit 2a12968Copy full SHA for 2a12968
veadk/tools/builtin_tools/supabase_toolset.py
@@ -19,6 +19,17 @@
19
20
21
def build_supabase_mcptoolset(url: str, api_key: str) -> MCPToolset:
22
+ """Build a MCPToolset for Supabase.
23
+
24
+ You can get the corresponding information from https://supabase.com/docs/guides/getting-started/mcp
25
26
+ Args:
27
+ url (str): The Supabase URL.
28
+ api_key (str): The Supabase API key.
29
30
+ Returns:
31
+ MCPToolset: The MCPToolset for Supabase.
32
+ """
33
return MCPToolset(
34
connection_params=StreamableHTTPConnectionParams(
35
url=url, headers={"Authorization": f"Bearer {api_key}"}
0 commit comments