image-tiler-mcp-server 1.2.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,59 @@
1
+ {
2
+ "name": "image-tiler-mcp-server",
3
+ "version": "1.2.0",
4
+ "description": "MCP server that splits large images into optimally-sized tiles for LLM vision (Claude, OpenAI, Gemini, Gemini 3)",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "image-tiler-mcp-server": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "start": "node dist/index.js",
18
+ "dev": "tsc --watch",
19
+ "prepublishOnly": "npm run build",
20
+ "inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest"
23
+ },
24
+ "keywords": [
25
+ "mcp",
26
+ "model-context-protocol",
27
+ "image-tiler",
28
+ "claude",
29
+ "llm",
30
+ "vision",
31
+ "screenshot",
32
+ "sharp",
33
+ "image-processing",
34
+ "tiling"
35
+ ],
36
+ "author": "Keiver Hernandez",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/keiver/image-tiler-mcp-server.git"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/keiver/image-tiler-mcp-server/issues"
44
+ },
45
+ "homepage": "https://github.com/keiver/image-tiler-mcp-server#readme",
46
+ "engines": {
47
+ "node": ">=18.0.0"
48
+ },
49
+ "dependencies": {
50
+ "@modelcontextprotocol/sdk": "^1.26.0",
51
+ "sharp": "^0.33.5",
52
+ "zod": "^3.24.1"
53
+ },
54
+ "devDependencies": {
55
+ "@types/node": "^22.10.0",
56
+ "typescript": "^5.7.0",
57
+ "vitest": "^4.0.18"
58
+ }
59
+ }