@missionsquad/mcp-msq 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/README.md +232 -0
- package/dist/config.d.ts +20 -0
- package/dist/config.js +77 -0
- package/dist/config.js.map +1 -0
- package/dist/errors.d.ts +15 -0
- package/dist/errors.js +75 -0
- package/dist/errors.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -0
- package/dist/json.d.ts +4 -0
- package/dist/json.js +13 -0
- package/dist/json.js.map +1 -0
- package/dist/msq-client.d.ts +42 -0
- package/dist/msq-client.js +218 -0
- package/dist/msq-client.js.map +1 -0
- package/dist/schemas.d.ts +644 -0
- package/dist/schemas.js +169 -0
- package/dist/schemas.js.map +1 -0
- package/dist/stdio-safe-console.d.ts +6 -0
- package/dist/stdio-safe-console.js +27 -0
- package/dist/stdio-safe-console.js.map +1 -0
- package/dist/tools.d.ts +3 -0
- package/dist/tools.js +415 -0
- package/dist/tools.js.map +1 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@missionsquad/mcp-msq",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server interface for the MissionSquad API",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"bin": {
|
|
13
|
+
"mcp-msq": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"clean": "rm -rf dist build",
|
|
17
|
+
"build": "yarn clean && tsc && chmod +x dist/index.js",
|
|
18
|
+
"start": "node dist/index.js",
|
|
19
|
+
"dev": "tsc --watch & node --watch dist/index.js",
|
|
20
|
+
"inspect": "fastmcp inspect src/index.ts",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:coverage": "vitest run --coverage",
|
|
23
|
+
"test:watch": "vitest",
|
|
24
|
+
"prepare": "yarn build",
|
|
25
|
+
"prepublishOnly": "yarn test && yarn build",
|
|
26
|
+
"format": "npx prettier --check .",
|
|
27
|
+
"format:write": "npx prettier --write ."
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"mcp",
|
|
31
|
+
"missionsquad",
|
|
32
|
+
"agent",
|
|
33
|
+
"ai",
|
|
34
|
+
"llm",
|
|
35
|
+
"api"
|
|
36
|
+
],
|
|
37
|
+
"author": "Mission Squad AI <jayson@missionsquad.ai>",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=20.0.0"
|
|
41
|
+
},
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@missionsquad/fastmcp": "^1.1.3",
|
|
47
|
+
"dotenv": "^16.4.7",
|
|
48
|
+
"zod": "^3.22.4"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^20.11.30",
|
|
52
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
53
|
+
"typescript": "^5.9.3",
|
|
54
|
+
"vitest": "^2.1.8"
|
|
55
|
+
}
|
|
56
|
+
}
|