@fineorg/mcp 1.0.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/README.md +354 -0
- package/dist/index-http.d.ts +1 -0
- package/dist/index-http.js +2425 -0
- package/dist/index-sse.d.ts +1 -0
- package/dist/index-sse.js +2242 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1981 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fineorg/mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP Server for platform integrations (Bitbucket, Jira, Confluence, Feishu)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"mcp": "dist/index.js",
|
|
9
|
+
"mcp-sse": "dist/index-sse.js",
|
|
10
|
+
"mcp-http": "dist/index-http.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"start": "node dist/index.js",
|
|
23
|
+
"start:http": "node dist/index-http.js",
|
|
24
|
+
"start:sse": "node dist/index-sse.js",
|
|
25
|
+
"dev": "bun run --watch src/index.ts",
|
|
26
|
+
"dev:sse": "bun run --watch src/index-sse.ts",
|
|
27
|
+
"dev:http": "bun run --watch src/index-http.ts",
|
|
28
|
+
"test": "vitest",
|
|
29
|
+
"test:run": "vitest run",
|
|
30
|
+
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"lint": "eslint src --ext .ts",
|
|
32
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
33
|
+
"type-check": "tsc --noEmit",
|
|
34
|
+
"prepare": "husky || true",
|
|
35
|
+
"prepublishOnly": "npm run build && npm run test"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@larksuiteoapi/node-sdk": "^1.59.0",
|
|
39
|
+
"@modelcontextprotocol/sdk": "1.27.1",
|
|
40
|
+
"axios": "1.13.6",
|
|
41
|
+
"axios-retry": "4.5.0",
|
|
42
|
+
"dotenv": "17.3.1",
|
|
43
|
+
"zod": "4.3.6"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/bun": "1.3.10",
|
|
47
|
+
"@types/node": "25.5.0",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "8.57.0",
|
|
49
|
+
"@typescript-eslint/parser": "8.57.0",
|
|
50
|
+
"@vitest/coverage-v8": "4.1.0",
|
|
51
|
+
"eslint": "9.39.4",
|
|
52
|
+
"eslint-import-resolver-typescript": "4.4.4",
|
|
53
|
+
"eslint-plugin-import": "2.32.0",
|
|
54
|
+
"eslint-plugin-unused-imports": "4.4.1",
|
|
55
|
+
"husky": "9.1.7",
|
|
56
|
+
"tsup": "^8.5.1",
|
|
57
|
+
"typescript": "5.9.3",
|
|
58
|
+
"vitest": "4.1.0"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=20.0.0"
|
|
62
|
+
},
|
|
63
|
+
"keywords": [
|
|
64
|
+
"mcp",
|
|
65
|
+
"model-context-protocol",
|
|
66
|
+
"bitbucket",
|
|
67
|
+
"jira",
|
|
68
|
+
"confluence",
|
|
69
|
+
"feishu"
|
|
70
|
+
],
|
|
71
|
+
"license": "MIT"
|
|
72
|
+
}
|