@yawlabs/mcp 0.58.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.
Files changed (4) hide show
  1. package/CHANGELOG.md +316 -0
  2. package/README.md +377 -0
  3. package/dist/index.js +10547 -0
  4. package/package.json +64 -0
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@yawlabs/mcp",
3
+ "version": "0.58.0",
4
+ "mcpName": "io.github.YawLabs/mcp",
5
+ "description": "Yaw MCP -- MCP servers, managed. Run locally, sync across machines with Pro.",
6
+ "license": "UNLICENSED",
7
+ "author": "Yaw Labs <support@yaw.sh> (https://yaw.sh/mcp)",
8
+ "type": "module",
9
+ "bin": {
10
+ "yaw-mcp": "./dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "!dist/**/*.test.*",
15
+ "README.md",
16
+ "CHANGELOG.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "test": "vitest run",
22
+ "lint": "biome check src/",
23
+ "lint:fix": "biome check --write src/",
24
+ "typecheck": "tsc --noEmit",
25
+ "test:ci": "npm run build && npm test",
26
+ "prepublishOnly": "npm run build",
27
+ "start": "node dist/index.js"
28
+ },
29
+ "dependencies": {
30
+ "@modelcontextprotocol/sdk": "^1.29.0",
31
+ "undici": "^7.8.0"
32
+ },
33
+ "overrides": {
34
+ "hono": "^4.12.14"
35
+ },
36
+ "devDependencies": {
37
+ "@biomejs/biome": "^1.9.4",
38
+ "@types/node": "^22.0.0",
39
+ "tsup": "^8.4.0",
40
+ "typescript": "^5.8.3",
41
+ "vitest": "^3.1.1"
42
+ },
43
+ "engines": {
44
+ "node": ">=18"
45
+ },
46
+ "keywords": [
47
+ "mcp",
48
+ "model-context-protocol",
49
+ "orchestrator",
50
+ "mcp-server",
51
+ "ai",
52
+ "yaw",
53
+ "yaw-mcp",
54
+ "yawlabs"
55
+ ],
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/YawLabs/mcph.git"
59
+ },
60
+ "bugs": {
61
+ "url": "https://github.com/YawLabs/mcph/issues"
62
+ },
63
+ "homepage": "https://yaw.sh/mcp"
64
+ }