@myspec/mcp-server 0.1.0-next.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.
Files changed (3) hide show
  1. package/README.md +154 -0
  2. package/dist/index.js +3604 -0
  3. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@myspec/mcp-server",
3
+ "version": "0.1.0-next.1",
4
+ "description": "MySpec MCP server — exposes MySpec platform projects, files and attachments to MCP-aware clients via OAuth-authenticated access tokens.",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/myspecs/myspec-monorepo.git",
9
+ "directory": "projects/mcp-server"
10
+ },
11
+ "homepage": "https://github.com/myspecs/myspec-monorepo/tree/main/projects/mcp-server#readme",
12
+ "bin": {
13
+ "myspec-mcp": "./dist/index.js"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "tsx src/index.ts",
22
+ "start": "node dist/index.js",
23
+ "typecheck": "tsc --noEmit",
24
+ "test": "vitest run",
25
+ "test:watch": "vitest",
26
+ "test:integration": "npm run build && vitest run --config vitest.integration.config.ts",
27
+ "lint": "eslint src",
28
+ "lint:fix": "eslint src --fix",
29
+ "check": "npm run typecheck && npm run lint && npm run test"
30
+ },
31
+ "keywords": [
32
+ "mcp",
33
+ "model-context-protocol",
34
+ "myspec",
35
+ "claude"
36
+ ],
37
+ "license": "MIT",
38
+ "engines": {
39
+ "node": ">=22.0.0"
40
+ },
41
+ "dependencies": {
42
+ "@modelcontextprotocol/sdk": "^1.0.4",
43
+ "@opentelemetry/api": "^1.9.0",
44
+ "open": "^11.0.0",
45
+ "repomix": "1.14.1",
46
+ "ws": "^8.21.0",
47
+ "zod": "^4.4.3"
48
+ },
49
+ "devDependencies": {
50
+ "@eslint/js": "^10.0.1",
51
+ "@myspec/platform-client": "file:../../packages/platform-client",
52
+ "@myspec/shared": "file:../../packages/shared",
53
+ "@types/node": "^22.10.0",
54
+ "@types/ws": "^8.18.1",
55
+ "eslint": "^10.4.1",
56
+ "tsup": "^8.3.5",
57
+ "tsx": "^4.22.3",
58
+ "typescript": "^5.7.0",
59
+ "typescript-eslint": "^8.60.0",
60
+ "vitest": "^3.0.0"
61
+ }
62
+ }