@takeshijuan/ideogram-mcp-server 1.0.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/LICENSE +21 -0
- package/README.md +278 -0
- package/dist/index.js +3607 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@takeshijuan/ideogram-mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Production-grade Ideogram MCP server for AI image generation integration with Claude Desktop, Cursor, and VS Code",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=18.0.0"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "tsx watch src/index.ts",
|
|
13
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --packages=external",
|
|
14
|
+
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
15
|
+
"start": "node dist/index.js",
|
|
16
|
+
"test": "vitest",
|
|
17
|
+
"test:run": "vitest run",
|
|
18
|
+
"test:coverage": "vitest run --coverage",
|
|
19
|
+
"lint": "eslint src --ext .ts",
|
|
20
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
21
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
25
|
+
"verify:claude-desktop": "bash scripts/verify-claude-desktop.sh",
|
|
26
|
+
"clean": "rm -rf dist coverage",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"mcp",
|
|
31
|
+
"model-context-protocol",
|
|
32
|
+
"ideogram",
|
|
33
|
+
"ai",
|
|
34
|
+
"image-generation",
|
|
35
|
+
"claude",
|
|
36
|
+
"anthropic",
|
|
37
|
+
"llm"
|
|
38
|
+
],
|
|
39
|
+
"author": "",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
43
|
+
"axios": "^1.6.7",
|
|
44
|
+
"dotenv": "^16.4.1",
|
|
45
|
+
"form-data": "^4.0.0",
|
|
46
|
+
"pino": "^8.18.0",
|
|
47
|
+
"zod": "^3.22.4"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^20.11.16",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
52
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
53
|
+
"@vitest/coverage-v8": "^1.2.2",
|
|
54
|
+
"esbuild": "^0.20.0",
|
|
55
|
+
"eslint": "^8.56.0",
|
|
56
|
+
"eslint-config-prettier": "^9.1.0",
|
|
57
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
58
|
+
"pino-pretty": "^10.3.1",
|
|
59
|
+
"prettier": "^3.2.4",
|
|
60
|
+
"tsx": "^4.7.0",
|
|
61
|
+
"typescript": "^5.3.3",
|
|
62
|
+
"vitest": "^1.2.2"
|
|
63
|
+
},
|
|
64
|
+
"files": [
|
|
65
|
+
"dist",
|
|
66
|
+
"README.md",
|
|
67
|
+
"LICENSE"
|
|
68
|
+
],
|
|
69
|
+
"repository": {
|
|
70
|
+
"type": "git",
|
|
71
|
+
"url": "git+https://github.com/takeshijuan/ideogram-mcp-server.git"
|
|
72
|
+
},
|
|
73
|
+
"bugs": {
|
|
74
|
+
"url": "https://github.com/takeshijuan/ideogram-mcp-server/issues"
|
|
75
|
+
},
|
|
76
|
+
"homepage": "https://github.com/takeshijuan/ideogram-mcp-server#readme"
|
|
77
|
+
}
|