spritecook-mcp 0.0.1
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/index.js +8 -0
- package/package.json +24 -0
package/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// SpriteCook MCP Server - Model Context Protocol server for AI-powered pixel art generation
|
|
2
|
+
// This package is a placeholder. Full MCP server package coming soon.
|
|
3
|
+
// Visit https://spritecook.ai for more information.
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
version: "0.0.1",
|
|
7
|
+
message: "SpriteCook MCP Server coming soon. Visit https://spritecook.ai for more information.",
|
|
8
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "spritecook-mcp",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "SpriteCook MCP Server - Model Context Protocol server for AI-powered pixel art generation. Connect your AI agent to SpriteCook for game asset creation.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"spritecook",
|
|
7
|
+
"mcp",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"pixel-art",
|
|
10
|
+
"game-assets",
|
|
11
|
+
"ai-agent",
|
|
12
|
+
"cursor",
|
|
13
|
+
"claude",
|
|
14
|
+
"vscode"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://spritecook.ai",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/spritecook/spritecook-mcp"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": "SpriteCook <hello@spritecook.ai>",
|
|
23
|
+
"main": "index.js"
|
|
24
|
+
}
|