Skip to content

Commit 2a12968

Browse files
committed
add docstring
1 parent c548559 commit 2a12968

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

veadk/tools/builtin_tools/supabase_toolset.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@
1919

2020

2121
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+
"""
2233
return MCPToolset(
2334
connection_params=StreamableHTTPConnectionParams(
2435
url=url, headers={"Authorization": f"Bearer {api_key}"}

0 commit comments

Comments
 (0)