@fre4x/jules 1.0.29 → 1.0.40

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.
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 fritzprix
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 fritzprix
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,71 +1,68 @@
1
- # Jules MCP Server
2
-
3
- An MCP server implementation for [Jules API](https://developers.google.com/jules/api), allowing LLMs to interact directly with your automated Jules workflows.
4
-
5
- ## Prerequisites
6
-
7
- 1. **Jules API Key**: Get your API Key from the Jules [Settings page](https://jules.google.com/settings#api).
8
- * *Note: Currently, Jules is migrating its authentication methods. If you receive a `401 Unauthorized` indicating "API keys are not supported by this API," you may need to wait for further updates from the Jules platform or supply an OAuth2 Token in place of the API key if supported.*
9
-
10
- ## Installation & Usage
11
-
12
- You can use the server directly via `npx` without installing it globally:
13
-
14
- ```bash
15
- npx jules-mcp
16
- ```
17
-
18
- ### Environment Variables
19
-
20
- The server requires the following environment variables:
21
-
22
- - `JULES_API_KEY`: Your Jules API Key or Authentication Token.
23
-
24
- ## Configuration for Claude Desktop
25
-
26
- To use this server with the Claude Desktop app, you need to add it to your configuration file.
27
-
28
- **Config file locations:**
29
- - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
30
- - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
31
-
32
- Add the following to your configuration, replacing `<YOUR_API_KEY>` with your actual Jules API key:
33
-
34
- ```json
35
- {
36
- "mcpServers": {
37
- "jules": {
38
- "command": "npx",
39
- "args": [
40
- "-y",
41
- "jules-mcp"
42
- ],
43
- "env": {
44
- "JULES_API_KEY": "<YOUR_API_KEY>"
45
- }
46
- }
47
- }
48
- }
49
- ```
50
-
51
- ## Available Tools
52
-
53
- The server implements the following tools:
54
-
55
- - `jules_list_sources`: Find the IDs of sources (e.g., connected GitHub repos) you can interact with.
56
- - `jules_create_session`: Start a new Jules coding session with a specific prompt and source context.
57
- - `jules_list_sessions`: Check the status and output links (e.g., Pull Requests) of your sessions.
58
- - `jules_approve_plan`: Approve a session's execution plan (if it was created with `requirePlanApproval=true`).
59
-
60
- ## Development
61
-
62
- ```bash
63
- # Install dependencies
64
- npm install
65
-
66
- # Build the project
67
- npm run build
68
-
69
- # Run via MCP Inspector for testing
70
- npm run inspector
71
- ```
1
+ # jules The Coding Agent Bridge
2
+
3
+ > *Autonomous code changes, PR generation, and session management. The swarm's hands.*
4
+
5
+ Part of **[FRE4X-B1TE](../)** — a monorepo of MCP servers built for autonomous agents.
6
+
7
+ [Google Jules](https://jules.google.com/) is an autonomous coding agent. This B1TE exposes its full API as MCP tools — so your agent can spawn Jules sessions, approve plans, and get PRs merged without a human in the loop.
8
+
9
+ ## Tools
10
+
11
+ | Tool | What it does |
12
+ |------|-------------|
13
+ | `jules_list_sources` | List connected GitHub repos available as sources |
14
+ | `jules_create_session` | Start a new Jules coding session with a prompt, source, and optional config |
15
+ | `jules_list_sessions` | List all sessions and their status (e.g. PR links) |
16
+ | `jules_approve_plan` | Approve a session's execution plan (when `requirePlanApproval=true`) |
17
+
18
+ ### `jules_create_session` parameters
19
+
20
+ | Parameter | Type | Description |
21
+ |-----------|------|-------------|
22
+ | `source` | string | Source resource name, e.g. `sources/github/owner/repo` |
23
+ | `title` | string | Session title |
24
+ | `prompt` | string | Task description for Jules |
25
+ | `startingBranch` | string | Branch to start from (default: `main`) |
26
+ | `automationMode` | string | `AUTO_CREATE_PR` or `NONE` (default: `NONE`) |
27
+ | `requirePlanApproval` | boolean | If true, pause for `jules_approve_plan` before executing (default: false) |
28
+
29
+ ## Requirements
30
+
31
+ A [Jules API key](https://jules.google.com/settings#api) — set as `JULES_API_KEY`.
32
+
33
+ ## Mock Mode
34
+
35
+ Run without an API key (returns fixture data of identical shape):
36
+
37
+ ```bash
38
+ MOCK=true npx @fre4x/jules
39
+ ```
40
+
41
+ ## Deploy
42
+
43
+ ```json
44
+ {
45
+ "mcpServers": {
46
+ "jules": {
47
+ "command": "npx",
48
+ "args": ["-y", "@fre4x/jules"],
49
+ "env": {
50
+ "JULES_API_KEY": "your_api_key_here"
51
+ }
52
+ }
53
+ }
54
+ }
55
+ ```
56
+
57
+ ## Development
58
+
59
+ ```bash
60
+ npm install
61
+ npm run dev # tsx, no build
62
+ npm run build # esbuild → dist/
63
+ npm test # vitest unit tests
64
+ ```
65
+
66
+ ## License
67
+
68
+ MIT — **WE ARE THE FRE4X.**
@@ -3,58 +3,83 @@ export declare enum ResponseFormat {
3
3
  MARKDOWN = "markdown",
4
4
  JSON = "json"
5
5
  }
6
- export declare const ResponseFormatSchema: zod.ZodOptional<zod.ZodEnum<{
7
- markdown: "markdown";
8
- json: "json";
9
- }>>;
6
+ export declare const ResponseFormatSchema: zod.ZodOptional<zod.ZodEnum<["markdown", "json"]>>;
10
7
  export declare const PaginationSchema: zod.ZodObject<{
11
8
  pageSize: zod.ZodDefault<zod.ZodNumber>;
12
9
  pageToken: zod.ZodOptional<zod.ZodString>;
13
- response_format: zod.ZodOptional<zod.ZodEnum<{
14
- markdown: "markdown";
15
- json: "json";
16
- }>>;
17
- }, zod.z.core.$strip>;
10
+ response_format: zod.ZodOptional<zod.ZodEnum<["markdown", "json"]>>;
11
+ }, "strip", zod.ZodTypeAny, {
12
+ pageSize: number;
13
+ pageToken?: string | undefined;
14
+ response_format?: "markdown" | "json" | undefined;
15
+ }, {
16
+ pageSize?: number | undefined;
17
+ pageToken?: string | undefined;
18
+ response_format?: "markdown" | "json" | undefined;
19
+ }>;
18
20
  export declare const ListSourcesInputSchema: zod.ZodObject<{
19
21
  pageSize: zod.ZodDefault<zod.ZodNumber>;
20
22
  pageToken: zod.ZodOptional<zod.ZodString>;
21
- response_format: zod.ZodOptional<zod.ZodEnum<{
22
- markdown: "markdown";
23
- json: "json";
24
- }>>;
25
- }, zod.z.core.$strip>;
23
+ response_format: zod.ZodOptional<zod.ZodEnum<["markdown", "json"]>>;
24
+ }, "strip", zod.ZodTypeAny, {
25
+ pageSize: number;
26
+ pageToken?: string | undefined;
27
+ response_format?: "markdown" | "json" | undefined;
28
+ }, {
29
+ pageSize?: number | undefined;
30
+ pageToken?: string | undefined;
31
+ response_format?: "markdown" | "json" | undefined;
32
+ }>;
26
33
  export type ListSourcesInput = zod.z.infer<typeof ListSourcesInputSchema>;
27
34
  export declare const CreateSessionInputSchema: zod.ZodObject<{
28
35
  prompt: zod.ZodString;
29
36
  source: zod.ZodString;
30
37
  startingBranch: zod.ZodDefault<zod.ZodString>;
31
- automationMode: zod.ZodOptional<zod.ZodEnum<{
32
- AUTO_CREATE_PR: "AUTO_CREATE_PR";
33
- NONE: "NONE";
34
- }>>;
38
+ automationMode: zod.ZodOptional<zod.ZodEnum<["AUTO_CREATE_PR", "NONE"]>>;
35
39
  title: zod.ZodString;
36
40
  requirePlanApproval: zod.ZodDefault<zod.ZodBoolean>;
37
- response_format: zod.ZodOptional<zod.ZodEnum<{
38
- markdown: "markdown";
39
- json: "json";
40
- }>>;
41
- }, zod.z.core.$strip>;
41
+ response_format: zod.ZodOptional<zod.ZodEnum<["markdown", "json"]>>;
42
+ }, "strip", zod.ZodTypeAny, {
43
+ prompt: string;
44
+ source: string;
45
+ startingBranch: string;
46
+ title: string;
47
+ requirePlanApproval: boolean;
48
+ response_format?: "markdown" | "json" | undefined;
49
+ automationMode?: "AUTO_CREATE_PR" | "NONE" | undefined;
50
+ }, {
51
+ prompt: string;
52
+ source: string;
53
+ title: string;
54
+ response_format?: "markdown" | "json" | undefined;
55
+ startingBranch?: string | undefined;
56
+ automationMode?: "AUTO_CREATE_PR" | "NONE" | undefined;
57
+ requirePlanApproval?: boolean | undefined;
58
+ }>;
42
59
  export type CreateSessionInput = zod.z.infer<typeof CreateSessionInputSchema>;
43
60
  export declare const ListSessionsInputSchema: zod.ZodObject<{
44
61
  pageSize: zod.ZodDefault<zod.ZodNumber>;
45
62
  pageToken: zod.ZodOptional<zod.ZodString>;
46
- response_format: zod.ZodOptional<zod.ZodEnum<{
47
- markdown: "markdown";
48
- json: "json";
49
- }>>;
50
- }, zod.z.core.$strip>;
63
+ response_format: zod.ZodOptional<zod.ZodEnum<["markdown", "json"]>>;
64
+ }, "strip", zod.ZodTypeAny, {
65
+ pageSize: number;
66
+ pageToken?: string | undefined;
67
+ response_format?: "markdown" | "json" | undefined;
68
+ }, {
69
+ pageSize?: number | undefined;
70
+ pageToken?: string | undefined;
71
+ response_format?: "markdown" | "json" | undefined;
72
+ }>;
51
73
  export type ListSessionsInput = zod.z.infer<typeof ListSessionsInputSchema>;
52
74
  export declare const ApprovePlanInputSchema: zod.ZodObject<{
53
75
  sessionId: zod.ZodString;
54
- response_format: zod.ZodOptional<zod.ZodEnum<{
55
- markdown: "markdown";
56
- json: "json";
57
- }>>;
58
- }, zod.z.core.$strip>;
76
+ response_format: zod.ZodOptional<zod.ZodEnum<["markdown", "json"]>>;
77
+ }, "strip", zod.ZodTypeAny, {
78
+ sessionId: string;
79
+ response_format?: "markdown" | "json" | undefined;
80
+ }, {
81
+ sessionId: string;
82
+ response_format?: "markdown" | "json" | undefined;
83
+ }>;
59
84
  export type ApprovePlanInput = zod.z.infer<typeof ApprovePlanInputSchema>;
60
85
  //# sourceMappingURL=julesSchemas.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"julesSchemas.d.ts","sourceRoot":"","sources":["../../src/schemas/julesSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,KAAK,CAAC;AAK3B,oBAAY,cAAc;IACtB,QAAQ,aAAa;IACrB,IAAI,SAAS;CAChB;AAGD,eAAO,MAAM,oBAAoB;;;GAGuC,CAAC;AAEzE,eAAO,MAAM,gBAAgB;;;;;;;qBAa3B,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;;;;qBAAmB,CAAC;AACvD,MAAM,MAAM,gBAAgB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG1E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;qBAyBnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAG9E,eAAO,MAAM,uBAAuB;;;;;;;qBAAmB,CAAC;AACxD,MAAM,MAAM,iBAAiB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG5E,eAAO,MAAM,sBAAsB;;;;;;qBAKjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
1
+ {"version":3,"file":"julesSchemas.d.ts","sourceRoot":"","sources":["../../src/schemas/julesSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,KAAK,CAAC;AAK3B,oBAAY,cAAc;IACtB,QAAQ,aAAa;IACrB,IAAI,SAAS;CAChB;AAGD,eAAO,MAAM,oBAAoB,oDAGuC,CAAC;AAEzE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAa3B,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;EAAmB,CAAC;AACvD,MAAM,MAAM,gBAAgB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG1E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;EAyBnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAG9E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;EAAmB,CAAC;AACxD,MAAM,MAAM,iBAAiB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG5E,eAAO,MAAM,sBAAsB;;;;;;;;;EAKjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
@@ -19,14 +19,14 @@ export function registerCreateSessionTool(server) {
19
19
  ? MOCK_FIXTURES.createSession
20
20
  : await julesApiRequest('/v1alpha/sessions', 'POST', {
21
21
  prompt: params.prompt,
22
- title: params.title,
23
- sourceContext: {
22
+ options: {
24
23
  source: params.source,
25
- githubRepoContext: {
24
+ config: {
26
25
  startingBranch: params.startingBranch,
27
26
  },
28
27
  },
29
28
  automationMode: params.automationMode,
29
+ title: params.title,
30
30
  requirePlanApproval: params.requirePlanApproval,
31
31
  });
32
32
  const sessionId = data.name;
@@ -1 +1 @@
1
- {"version":3,"file":"createSession.js","sourceRoot":"","sources":["../../src/tools/createSession.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChF,OAAO,EACH,wBAAwB,EAExB,cAAc,GACjB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAQpD,MAAM,UAAU,yBAAyB,CAAC,MAAiB;IACvD,MAAM,CAAC,YAAY,CACf,sBAAsB,EACtB;QACI,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EAAE,qDAAqD;QAClE,WAAW,EAAE,wBAA+B;QAC5C,WAAW,EAAE;YACT,YAAY,EAAE,KAAK;YACnB,eAAe,EAAE,KAAK;YACtB,cAAc,EAAE,KAAK;YACrB,aAAa,EAAE,KAAK;SACvB;KACJ,EACD,KAAK,EAAE,MAA0B,EAAE,EAAE;QACjC,IAAI,CAAC;YACD,MAAM,IAAI,GAAG,OAAO;gBAChB,CAAC,CAAE,aAAa,CAAC,aAAuC;gBACxD,CAAC,CAAC,MAAM,eAAe,CACjB,mBAAmB,EACnB,MAAM,EACN;oBACI,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,KAAK,EAAE,MAAM,CAAC,KAAK;oBACnB,aAAa,EAAE;wBACX,MAAM,EAAE,MAAM,CAAC,MAAM;wBACrB,iBAAiB,EAAE;4BACf,cAAc,EAAE,MAAM,CAAC,cAAc;yBACxC;qBACJ;oBACD,cAAc,EAAE,MAAM,CAAC,cAAc;oBACrC,mBAAmB,EAAE,MAAM,CAAC,mBAAmB;iBAClD,CACJ,CAAC;YAER,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;YAC5B,IAAI,WAAmB,CAAC;YAExB,IAAI,MAAM,CAAC,eAAe,KAAK,cAAc,CAAC,IAAI,EAAE,CAAC;gBACjD,MAAM,KAAK,GAAG;oBACV,mBAAmB;oBACnB,EAAE;oBACF,qBAAqB,SAAS,EAAE;oBAChC,gBAAgB,IAAI,CAAC,KAAK,IAAI,MAAM,CAAC,KAAK,EAAE;oBAC5C,iBAAiB,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE;oBAC/C,EAAE;oBACF,gDAAgD;iBACnD,CAAC;gBACF,WAAW,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACnC,CAAC;iBAAM,CAAC;gBACJ,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;YAChD,CAAC;YAED,IAAI,WAAW,CAAC,MAAM,GAAG,eAAe;gBACpC,WAAW;oBACP,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC;wBACrC,kBAAkB,CAAC;YAC3B,OAAO;gBACH,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,MAAe,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;aAC1D,CAAC;QACN,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACb,OAAO,cAAc,CAAC,KAAK,CAAC,CAAC;QACjC,CAAC;IACL,CAAC,CACJ,CAAC;AACN,CAAC"}
1
+ {"version":3,"file":"createSession.js","sourceRoot":"","sources":["../../src/tools/createSession.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChF,OAAO,EACH,wBAAwB,EAExB,cAAc,GACjB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAQpD,MAAM,UAAU,yBAAyB,CAAC,MAAiB;IACvD,MAAM,CAAC,YAAY,CACf,sBAAsB,EACtB;QACI,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EAAE,qDAAqD;QAClE,WAAW,EAAE,wBAA+B;QAC5C,WAAW,EAAE;YACT,YAAY,EAAE,KAAK;YACnB,eAAe,EAAE,KAAK;YACtB,cAAc,EAAE,KAAK;YACrB,aAAa,EAAE,KAAK;SACvB;KACJ,EACD,KAAK,EAAE,MAA0B,EAAE,EAAE;QACjC,IAAI,CAAC;YACD,MAAM,IAAI,GAAG,OAAO;gBAChB,CAAC,CAAE,aAAa,CAAC,aAAuC;gBACxD,CAAC,CAAC,MAAM,eAAe,CACjB,mBAAmB,EACnB,MAAM,EACN;oBACI,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,OAAO,EAAE;wBACL,MAAM,EAAE,MAAM,CAAC,MAAM;wBACrB,MAAM,EAAE;4BACJ,cAAc,EAAE,MAAM,CAAC,cAAc;yBACxC;qBACJ;oBACD,cAAc,EAAE,MAAM,CAAC,cAAc;oBACrC,KAAK,EAAE,MAAM,CAAC,KAAK;oBACnB,mBAAmB,EAAE,MAAM,CAAC,mBAAmB;iBAClD,CACJ,CAAC;YAER,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;YAC5B,IAAI,WAAmB,CAAC;YAExB,IAAI,MAAM,CAAC,eAAe,KAAK,cAAc,CAAC,IAAI,EAAE,CAAC;gBACjD,MAAM,KAAK,GAAG;oBACV,mBAAmB;oBACnB,EAAE;oBACF,qBAAqB,SAAS,EAAE;oBAChC,gBAAgB,IAAI,CAAC,KAAK,IAAI,MAAM,CAAC,KAAK,EAAE;oBAC5C,iBAAiB,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE;oBAC/C,EAAE;oBACF,gDAAgD;iBACnD,CAAC;gBACF,WAAW,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACnC,CAAC;iBAAM,CAAC;gBACJ,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;YAChD,CAAC;YAED,IAAI,WAAW,CAAC,MAAM,GAAG,eAAe;gBACpC,WAAW;oBACP,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC;wBACrC,kBAAkB,CAAC;YAC3B,OAAO;gBACH,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,MAAe,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;aAC1D,CAAC;QACN,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACb,OAAO,cAAc,CAAC,KAAK,CAAC,CAAC;QACjC,CAAC;IACL,CAAC,CACJ,CAAC;AACN,CAAC"}
package/package.json CHANGED
@@ -1,42 +1,42 @@
1
- {
2
- "name": "@fre4x/jules",
3
- "version": "1.0.29",
4
- "description": "MCP server for Jules API integration",
5
- "type": "module",
6
- "bin": {
7
- "jules": "./dist/index.js"
8
- },
9
- "files": [
10
- "dist"
11
- ],
12
- "main": "dist/index.js",
13
- "scripts": {
14
- "start": "node dist/index.js",
15
- "dev": "tsc --watch",
16
- "build": "NODE_OPTIONS='--max-old-space-size=4096' tsc",
17
- "typecheck": "NODE_OPTIONS='--max-old-space-size=4096' tsc --noEmit",
18
- "inspector": "MOCK=true npx @modelcontextprotocol/inspector dist/index.js",
19
- "test": "vitest run --exclude dist",
20
- "test:watch": "vitest",
21
- "clean": "rm -rf dist"
22
- },
23
- "engines": {
24
- "node": ">=18"
25
- },
26
- "author": "fritzprix <innocentevil0914@gmail.com>",
27
- "license": "MIT",
28
- "repository": "https://github.com/fre4x/b1te",
29
- "dependencies": {
30
- "@modelcontextprotocol/sdk": "^1.26.0",
31
- "axios": "^1.7.9",
32
- "zod": "4.3.6"
33
- },
34
- "devDependencies": {
35
- "@types/node": "^22.10.0",
36
- "@vitest/coverage-v8": "^4.0.18",
37
- "axios-mock-adapter": "^2.1.0",
38
- "tsx": "^4.19.2",
39
- "typescript": "^5.7.2",
40
- "vitest": "^4.0.18"
41
- }
42
- }
1
+ {
2
+ "name": "@fre4x/jules",
3
+ "version": "1.0.40",
4
+ "description": "MCP server for Jules API integration",
5
+ "type": "module",
6
+ "bin": {
7
+ "jules": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "main": "dist/index.js",
13
+ "scripts": {
14
+ "start": "node dist/index.js",
15
+ "dev": "tsc --watch",
16
+ "build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc",
17
+ "typecheck": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
18
+ "inspector": "MOCK=true npx @modelcontextprotocol/inspector dist/index.js",
19
+ "test": "vitest run --exclude dist",
20
+ "test:watch": "vitest",
21
+ "clean": "rm -rf dist"
22
+ },
23
+ "engines": {
24
+ "node": ">=18"
25
+ },
26
+ "author": "fritzprix <innocentevil0914@gmail.com>",
27
+ "license": "MIT",
28
+ "repository": "https://github.com/fre4x/b1te",
29
+ "dependencies": {
30
+ "@modelcontextprotocol/sdk": "^1.26.0",
31
+ "axios": "^1.7.9",
32
+ "zod": "^4.0.0"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^22.10.0",
36
+ "@vitest/coverage-v8": "^4.0.18",
37
+ "axios-mock-adapter": "^2.1.0",
38
+ "tsx": "^4.19.2",
39
+ "typescript": "^5.7.2",
40
+ "vitest": "^4.0.18"
41
+ }
42
+ }