@bridge_gpt/mcp-server 0.1.0 → 0.1.1
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/README.md +1 -1
- package/build/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ MCP server for [Bridge API](https://bridgegpt-api.com) — exposes Jira integrat
|
|
|
6
6
|
|
|
7
7
|
| Variable | Required | Default | Description |
|
|
8
8
|
|---|---|---|---|
|
|
9
|
-
| `BAPI_BASE_URL` | Yes | `
|
|
9
|
+
| `BAPI_BASE_URL` | Yes | `https://bridgegpt-api.com` | Bridge API base URL |
|
|
10
10
|
| `BAPI_REPO_NAME` | Yes | _(none)_ | Jira project/repository identifier configured in Bridge API |
|
|
11
11
|
| `BAPI_API_KEY` | Yes | _(none)_ | API key obtained from the Bridge API setup UI |
|
|
12
12
|
| `BAPI_DOCS_DIR` | No | `docs/tmp` | Local directory for saving plans, critiques, and research reports |
|
package/build/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Exposes Bridge API Jira endpoints as MCP tools for Claude Code agents.
|
|
6
6
|
* Reads configuration from environment variables:
|
|
7
|
-
* BAPI_BASE_URL - Base URL of the Bridge API (
|
|
7
|
+
* BAPI_BASE_URL - Base URL of the Bridge API (default: https://bridgegpt-api.com)
|
|
8
8
|
* BAPI_REPO_NAME - Default repository name injected into every request
|
|
9
9
|
* BAPI_API_KEY - API key for X-API-Key authentication
|
|
10
10
|
* BAPI_DOCS_DIR - Base directory for local file output (default: docs/tmp)
|
|
@@ -19,7 +19,7 @@ import { resolveRecipe } from "./pipeline-utils.js";
|
|
|
19
19
|
// ---------------------------------------------------------------------------
|
|
20
20
|
// Configuration
|
|
21
21
|
// ---------------------------------------------------------------------------
|
|
22
|
-
const BASE_URL = process.env.BAPI_BASE_URL ?? "
|
|
22
|
+
const BASE_URL = process.env.BAPI_BASE_URL ?? "https://bridgegpt-api.com";
|
|
23
23
|
const REPO_NAME = process.env.BAPI_REPO_NAME ?? "";
|
|
24
24
|
const API_KEY = process.env.BAPI_API_KEY ?? "";
|
|
25
25
|
const BAPI_DOCS_DIR = process.env.BAPI_DOCS_DIR ?? "docs/tmp";
|