@with-thesis/mcp 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 +103 -0
- package/bin/thesis-mcp.mjs +3 -0
- package/dist/index.js +23401 -0
- package/dist/stdio.js +20202 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@with-thesis/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "thesis MCP server for API-key-based AI client access.",
|
|
6
|
+
"homepage": "https://withthesis.dev",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/tensorix-labs/thesis.git",
|
|
10
|
+
"directory": "packages/mcp"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"bin",
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"package.json"
|
|
20
|
+
],
|
|
21
|
+
"bin": {
|
|
22
|
+
"thesis-mcp": "bin/thesis-mcp.mjs"
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"dev:http": "bun run src/index.ts",
|
|
29
|
+
"dev:stdio": "bun run src/stdio.ts",
|
|
30
|
+
"start": "bun run src/index.ts",
|
|
31
|
+
"build": "bun build ./src/index.ts --outfile ./dist/index.js --target node --format esm && bun build ./src/stdio.ts --outfile ./dist/stdio.js --target node --format esm",
|
|
32
|
+
"prepack": "bun run build",
|
|
33
|
+
"typecheck": "bun x tsc --project tsconfig.json --noEmit",
|
|
34
|
+
"test": "bun test"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@hono/mcp": "^0.2.4",
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
39
|
+
"hono": "^4.12.7",
|
|
40
|
+
"zod": "^4.3.6"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/bun": "^1.3.5",
|
|
44
|
+
"@types/node": "^24.5.2"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"typescript": "^5"
|
|
48
|
+
}
|
|
49
|
+
}
|