godot-mcp-runtime 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,130 @@
1
+ import { GodotRunner, OperationParams, ToolDefinition } from '../utils/godot-runner.js';
2
+ export declare const projectToolDefinitions: ToolDefinition[];
3
+ export declare function handleLaunchEditor(runner: GodotRunner, args: OperationParams): Promise<{
4
+ content: Array<{
5
+ type: "text";
6
+ text: string;
7
+ }>;
8
+ isError: boolean;
9
+ } | {
10
+ content: {
11
+ type: string;
12
+ text: string;
13
+ }[];
14
+ }>;
15
+ export declare function handleRunProject(runner: GodotRunner, args: OperationParams): Promise<{
16
+ content: Array<{
17
+ type: "text";
18
+ text: string;
19
+ }>;
20
+ isError: boolean;
21
+ } | {
22
+ content: {
23
+ type: string;
24
+ text: string;
25
+ }[];
26
+ }>;
27
+ export declare function handleGetDebugOutput(runner: GodotRunner, args?: OperationParams): {
28
+ content: Array<{
29
+ type: "text";
30
+ text: string;
31
+ }>;
32
+ isError: boolean;
33
+ } | {
34
+ content: {
35
+ type: string;
36
+ text: string;
37
+ }[];
38
+ };
39
+ export declare function handleStopProject(runner: GodotRunner): {
40
+ content: Array<{
41
+ type: "text";
42
+ text: string;
43
+ }>;
44
+ isError: boolean;
45
+ } | {
46
+ content: {
47
+ type: string;
48
+ text: string;
49
+ }[];
50
+ };
51
+ export declare function handleListProjects(args: OperationParams): Promise<{
52
+ content: Array<{
53
+ type: "text";
54
+ text: string;
55
+ }>;
56
+ isError: boolean;
57
+ } | {
58
+ content: {
59
+ type: string;
60
+ text: string;
61
+ }[];
62
+ }>;
63
+ export declare function handleGetProjectInfo(runner: GodotRunner, args: OperationParams): Promise<{
64
+ content: Array<{
65
+ type: "text";
66
+ text: string;
67
+ }>;
68
+ isError: boolean;
69
+ } | {
70
+ content: {
71
+ type: string;
72
+ text: string;
73
+ }[];
74
+ }>;
75
+ export declare function handleTakeScreenshot(runner: GodotRunner, args: OperationParams): Promise<{
76
+ content: Array<{
77
+ type: "text";
78
+ text: string;
79
+ }>;
80
+ isError: boolean;
81
+ } | {
82
+ content: ({
83
+ type: string;
84
+ data: string;
85
+ mimeType: string;
86
+ text?: undefined;
87
+ } | {
88
+ type: string;
89
+ text: string;
90
+ data?: undefined;
91
+ mimeType?: undefined;
92
+ })[];
93
+ }>;
94
+ export declare function handleSimulateInput(runner: GodotRunner, args: OperationParams): Promise<{
95
+ content: Array<{
96
+ type: "text";
97
+ text: string;
98
+ }>;
99
+ isError: boolean;
100
+ } | {
101
+ content: {
102
+ type: string;
103
+ text: string;
104
+ }[];
105
+ }>;
106
+ export declare function handleGetUiElements(runner: GodotRunner, args: OperationParams): Promise<{
107
+ content: Array<{
108
+ type: "text";
109
+ text: string;
110
+ }>;
111
+ isError: boolean;
112
+ } | {
113
+ content: {
114
+ type: string;
115
+ text: string;
116
+ }[];
117
+ }>;
118
+ export declare function handleRunScript(runner: GodotRunner, args: OperationParams): Promise<{
119
+ content: Array<{
120
+ type: "text";
121
+ text: string;
122
+ }>;
123
+ isError: boolean;
124
+ } | {
125
+ content: {
126
+ type: string;
127
+ text: string;
128
+ }[];
129
+ }>;
130
+ //# sourceMappingURL=project-tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-tools.d.ts","sourceRoot":"","sources":["../../src/tools/project-tools.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,WAAW,EAKX,eAAe,EACf,cAAc,EACf,MAAM,0BAA0B,CAAC;AAElC,eAAO,MAAM,sBAAsB,EAAE,cAAc,EAkLlD,CAAC;AA0GF,wBAAsB,kBAAkB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;GAsDlF;AAED,wBAAsB,gBAAgB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;GAsChF;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,GAAE,eAAoB;;;;;;;;;;;EAiCnF;AAED,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,WAAW;;;;;;;;;;;EAoBpD;AAED,wBAAsB,kBAAkB,CAAC,IAAI,EAAE,eAAe;;;;;;;;;;;GAsC7D;AAED,wBAAsB,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;GA4DpF;AAED,wBAAsB,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;;;;;;;;GA4EpF;AAED,wBAAsB,mBAAmB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;GAmEnF;AAED,wBAAsB,mBAAmB,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;GAmDnF;AAED,wBAAsB,eAAe,CAAC,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,eAAe;;;;;;;;;;;GAgF/E"}