@bridge_gpt/mcp-server 0.1.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.
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@bridge_gpt/mcp-server",
3
+ "version": "0.1.0",
4
+ "description": "Bridge API MCP server — exposes Jira endpoints as MCP tools for Claude Code agents",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "bridge-api-mcp-server": "./build/index.js"
9
+ },
10
+ "files": [
11
+ "build/",
12
+ "!build/pipeline-utils.test.js",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "build": "node scripts/bundle-pipelines.js && tsc",
18
+ "postbuild": "node scripts/prepend-shebang.cjs",
19
+ "start": "node build/index.js",
20
+ "test": "node --test build/pipeline-utils.test.js",
21
+ "prepublishOnly": "npm run build && node scripts/verify-shebang.cjs"
22
+ },
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.26.0",
25
+ "zod": "^3.25.0"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^22.0.0",
29
+ "typescript": "^5.7.0"
30
+ },
31
+ "engines": {
32
+ "node": ">=18.0.0"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/Bridge-GPT/bridge-api.git",
37
+ "directory": "mcp_server"
38
+ },
39
+ "keywords": [
40
+ "mcp",
41
+ "bridge-api",
42
+ "jira",
43
+ "claude",
44
+ "ai-tools"
45
+ ],
46
+ "homepage": "https://bridgegpt-api.com"
47
+ }