Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:49:50 +08:00
commit adc4b2be25
147 changed files with 24716 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
mxcp: 1
tool:
name: get_user_info
description: "Get information about the authenticated user"
parameters: []
return:
type: object
properties:
username:
type: string
description: "Username of the authenticated user"
email:
type: string
description: "Email of the authenticated user"
provider:
type: string
description: "Authentication provider used"
source:
code: |
SELECT
get_username() as username,
get_user_email() as email,
get_user_provider() as provider