spritecook-mcp 0.2.1 → 0.2.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spritecook-mcp",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "SpriteCook MCP Server - Connect your AI agent (Cursor, VS Code, Claude) to SpriteCook for pixel art and game asset generation.",
5
5
  "keywords": [
6
6
  "spritecook",
package/src/editors.mjs CHANGED
@@ -340,21 +340,9 @@ function writeClaudeCodeConfig(configPath, apiKey) {
340
340
  // ── Helpers ─────────────────────────────────────────────────────────────
341
341
 
342
342
  function getAntigravityConfigPath() {
343
- const platform = process.platform;
344
343
  const home = homedir();
345
-
346
- if (platform === 'darwin') {
347
- return join(home, 'Library', 'Application Support', 'Google', 'Antigravity', 'mcp_config.json');
348
- }
349
- if (platform === 'win32') {
350
- const appData = process.env.APPDATA || join(home, 'AppData', 'Roaming');
351
- return join(appData, 'Google', 'Antigravity', 'mcp_config.json');
352
- }
353
- if (platform === 'linux') {
354
- return join(home, '.config', 'Google', 'Antigravity', 'mcp_config.json');
355
- }
356
-
357
- return null;
344
+ // Antigravity stores MCP config at ~/.gemini/antigravity/mcp_config.json on all platforms
345
+ return join(home, '.gemini', 'antigravity', 'mcp_config.json');
358
346
  }
359
347
 
360
348
  function getClaudeDesktopConfigPath() {
package/src/setup.mjs CHANGED
@@ -131,6 +131,6 @@ export async function run() {
131
131
 
132
132
  console.log();
133
133
  console.log(chalk.dim(' Then try asking your AI agent:'));
134
- console.log(chalk.white(' "Generate a 64x64 pixel art sword sprite"'));
134
+ console.log(chalk.white(' "Generate a chicken sprite"'));
135
135
  console.log();
136
136
  }