@truescreen/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/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@truescreen/mcp",
3
+ "version": "0.1.0",
4
+ "description": "TrueScreen MCP stdio server (local tools + Public API via TRUESCREEN_API_KEY)",
5
+ "license": "ISC",
6
+ "engines": {
7
+ "node": ">=20"
8
+ },
9
+ "type": "module",
10
+ "bin": {
11
+ "truescreen-mcp": "dist/cli.js"
12
+ },
13
+ "main": "dist/cli.js",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "prepublishOnly": "npm run build",
19
+ "build": "tsup",
20
+ "lint": "eslint --ignore-path ../../.gitignore .",
21
+ "lint:ts": "tsc --noEmit -p tsconfig.json",
22
+ "test": "TZ=UTC jest -c jest.config.cjs --passWithNoTests",
23
+ "test:ci": "TZ=UTC jest -c jest.config.cjs --passWithNoTests --ci --silent"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/truescreen/TrueScreen-api.git"
31
+ },
32
+ "dependencies": {
33
+ "@modelcontextprotocol/sdk": "^1.29.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/jest": "29.4.0",
37
+ "@types/node": "^20.16.11",
38
+ "eslint": "8.13.0",
39
+ "eslint-import-resolver-typescript": "^2.7.1",
40
+ "eslint-plugin-import": "2.26.0",
41
+ "jest": "29.4.0",
42
+ "ts-jest": "29.0.5",
43
+ "tsup": "^8.5.1",
44
+ "typescript": "~5.6.3"
45
+ }
46
+ }