Aktraiser
commited on
Commit
·
cf5cfd2
1
Parent(s):
fb84cc7
probleme init
Browse files- tools/__init__.py +6 -82
tools/__init__.py
CHANGED
@@ -2,85 +2,9 @@
|
|
2 |
🎨 Figma MCP Tools - Outils organisés par catégorie
|
3 |
"""
|
4 |
|
5 |
-
# Import de
|
6 |
-
from .config import
|
7 |
-
|
8 |
-
|
9 |
-
from .
|
10 |
-
|
11 |
-
# Import des outils de navigation
|
12 |
-
from .navigation import (
|
13 |
-
get_figma_file_info,
|
14 |
-
get_figma_comments,
|
15 |
-
get_figma_user_info
|
16 |
-
)
|
17 |
-
|
18 |
-
# Import des outils de compte utilisateur
|
19 |
-
from .user_account import (
|
20 |
-
get_figma_user_detailed_info,
|
21 |
-
list_figma_user_teams,
|
22 |
-
get_figma_team_info,
|
23 |
-
get_figma_current_user_permissions,
|
24 |
-
get_figma_workspace_usage_stats,
|
25 |
-
get_figma_api_limitations_info,
|
26 |
-
list_figma_team_projects
|
27 |
-
)
|
28 |
-
|
29 |
-
# Import des outils Figma Design
|
30 |
-
from .figma_design import (
|
31 |
-
create_figma_rectangle,
|
32 |
-
create_figma_frame,
|
33 |
-
create_figma_text
|
34 |
-
)
|
35 |
-
|
36 |
-
# Import des outils FigJam
|
37 |
-
from .figjam import (
|
38 |
-
create_figjam_sticky_note,
|
39 |
-
create_figjam_connector_between_elements,
|
40 |
-
create_figjam_shape_with_text,
|
41 |
-
create_figjam_table,
|
42 |
-
create_figjam_code_block,
|
43 |
-
create_figjam_background_shape,
|
44 |
-
create_figjam_sticker,
|
45 |
-
create_figjam_workshop_template,
|
46 |
-
create_figjam_organized_zone
|
47 |
-
)
|
48 |
-
|
49 |
-
# Liste de tous les outils disponibles pour l'export
|
50 |
-
__all__ = [
|
51 |
-
# Configuration
|
52 |
-
'figma_config',
|
53 |
-
'make_figma_request',
|
54 |
-
'configure_figma_token',
|
55 |
-
'configure_figma_file_id',
|
56 |
-
|
57 |
-
# Navigation
|
58 |
-
'get_figma_file_info',
|
59 |
-
'get_figma_comments',
|
60 |
-
'get_figma_user_info',
|
61 |
-
|
62 |
-
# Compte utilisateur
|
63 |
-
'get_figma_user_detailed_info',
|
64 |
-
'list_figma_user_teams',
|
65 |
-
'get_figma_team_info',
|
66 |
-
'get_figma_current_user_permissions',
|
67 |
-
'get_figma_workspace_usage_stats',
|
68 |
-
'get_figma_api_limitations_info',
|
69 |
-
'list_figma_team_projects',
|
70 |
-
|
71 |
-
# Figma Design
|
72 |
-
'create_figma_rectangle',
|
73 |
-
'create_figma_frame',
|
74 |
-
'create_figma_text',
|
75 |
-
|
76 |
-
# FigJam
|
77 |
-
'create_figjam_sticky_note',
|
78 |
-
'create_figjam_connector_between_elements',
|
79 |
-
'create_figjam_shape_with_text',
|
80 |
-
'create_figjam_table',
|
81 |
-
'create_figjam_code_block',
|
82 |
-
'create_figjam_background_shape',
|
83 |
-
'create_figjam_sticker',
|
84 |
-
'create_figjam_workshop_template',
|
85 |
-
'create_figjam_organized_zone'
|
86 |
-
]
|
|
|
2 |
🎨 Figma MCP Tools - Outils organisés par catégorie
|
3 |
"""
|
4 |
|
5 |
+
# Import simple de tous les outils
|
6 |
+
from .config import *
|
7 |
+
from .navigation import *
|
8 |
+
from .user_account import *
|
9 |
+
from .figma_design import *
|
10 |
+
from .figjam import *
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|