Initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user