diff --git a/src/gdrive/README.md b/src/gdrive/README.md index 97c1685a..70cc0195 100644 --- a/src/gdrive/README.md +++ b/src/gdrive/README.md @@ -40,7 +40,7 @@ Make sure to build the server with either `npm run build` or `npm run watch`. To authenticate and save credentials: -1. Run the server with the `auth` argument: `node build/gdrive auth` +1. Run the server with the `auth` argument: `node ./dist auth` 2. This will open an authentication flow in your system browser 3. Complete the authentication process 4. Credentials will be saved for future use @@ -49,7 +49,7 @@ To authenticate and save credentials: After authenticating: -1. Run the server normally: `node build/gdrive` +1. Run the server normally: `node ./dist` 2. The server will load the saved credentials and start -Note: If you haven't authenticated yet, the server will prompt you to run with the `auth` argument first. \ No newline at end of file +Note: If you haven't authenticated yet, the server will prompt you to run with the `auth` argument first. diff --git a/src/gdrive/index.ts b/src/gdrive/index.ts index 1a8ac82e..9c8bc229 100644 --- a/src/gdrive/index.ts +++ b/src/gdrive/index.ts @@ -175,7 +175,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => { const credentialsPath = path.join( path.dirname(new URL(import.meta.url).pathname), - "../../.gdrive-server-credentials.json", + "../../../.gdrive-server-credentials.json", ); async function authenticateAndSaveCredentials() { @@ -183,7 +183,7 @@ async function authenticateAndSaveCredentials() { const auth = await authenticate({ keyfilePath: path.join( path.dirname(new URL(import.meta.url).pathname), - "../../gcp-oauth.keys.json", + "../../../gcp-oauth.keys.json", ), scopes: ["https://www.googleapis.com/auth/drive.readonly"], });