@prefecthq/fastmcp-ts 0.0.2-alpha.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,110 @@
1
+ {
2
+ "name": "@prefecthq/fastmcp-ts",
3
+ "version": "0.0.2-alpha.0",
4
+ "description": "🏎️ The official FastMCP TypeScript library - build MCP servers and clients, fast 🏎️",
5
+ "type": "module",
6
+ "exports": {
7
+ "./server": {
8
+ "types": "./dist/server.d.ts",
9
+ "import": "./dist/server.js"
10
+ },
11
+ "./client": {
12
+ "types": "./dist/client.d.ts",
13
+ "import": "./dist/client.js"
14
+ }
15
+ },
16
+ "bin": {
17
+ "fastmcp": "./dist/cli/index.cjs"
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "README.md"
22
+ ],
23
+ "engines": {
24
+ "node": ">=22"
25
+ },
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "prepublishOnly": "npm run build",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
31
+ "test:coverage": "vitest run --coverage",
32
+ "typecheck": "tsc --noEmit",
33
+ "release": "np --tag alpha"
34
+ },
35
+ "np": {
36
+ "branch": "main",
37
+ "testScript": "test",
38
+ "release": true
39
+ },
40
+ "devDependencies": {
41
+ "@anthropic-ai/sdk": "^0.90.0",
42
+ "@google/genai": "^1.50.1",
43
+ "@types/node": "^22.0.0",
44
+ "@types/url-template": "^2.0.31",
45
+ "@vitest/coverage-v8": "^3.0.0",
46
+ "arktype": "^2.2.0",
47
+ "execa": "^9.6.1",
48
+ "get-bin-path": "^11.0.1",
49
+ "np": "^11.2.0",
50
+ "openai": "^6.34.0",
51
+ "tsup": "^8.5.1",
52
+ "tsx": "^4.21.0",
53
+ "typescript": "^5.0.0",
54
+ "valibot": "^1.3.1",
55
+ "vitest": "^3.0.0",
56
+ "zod": "^4.3.6"
57
+ },
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "git+https://github.com/PrefectHQ/fastmcp-ts.git"
61
+ },
62
+ "keywords": [
63
+ "mcp",
64
+ "mcp-tools",
65
+ "fastmcp",
66
+ "mcp-clients",
67
+ "llms",
68
+ "model-context-protocol",
69
+ "mcp-servers",
70
+ "typescript"
71
+ ],
72
+ "author": "prefecthq",
73
+ "license": "Apache-2.0",
74
+ "bugs": {
75
+ "url": "https://github.com/PrefectHQ/fastmcp-ts/issues"
76
+ },
77
+ "homepage": "https://github.com/PrefectHQ/fastmcp-ts#readme",
78
+ "peerDependencies": {
79
+ "@anthropic-ai/sdk": ">=0.39",
80
+ "@google/genai": ">=0.7",
81
+ "openai": ">=4"
82
+ },
83
+ "peerDependenciesMeta": {
84
+ "@anthropic-ai/sdk": {
85
+ "optional": true
86
+ },
87
+ "openai": {
88
+ "optional": true
89
+ },
90
+ "@google/genai": {
91
+ "optional": true
92
+ }
93
+ },
94
+ "dependencies": {
95
+ "@clack/prompts": "^1.2.0",
96
+ "@modelcontextprotocol/sdk": "^1.29.0",
97
+ "@standard-schema/spec": "^1.1.0",
98
+ "@types/express": "^5.0.6",
99
+ "chalk": "^5.6.2",
100
+ "chokidar": "^5.0.0",
101
+ "citty": "^0.2.2",
102
+ "cli-table3": "^0.6.5",
103
+ "express": "^5.2.1",
104
+ "fastest-levenshtein": "^1.0.16",
105
+ "jose": "6.2.2",
106
+ "listr2": "^10.2.1",
107
+ "url-template": "^3.1.1",
108
+ "yaml": "^2.8.3"
109
+ }
110
+ }