Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Download the latest release from the [releases page](https://github.com/mikecham
- `premiere-mcp.dxt` for Premiere Pro
3. Restart Claude Desktop

#### Using Prebuilt Executables (Recommended)
#### 4. Using Prebuilt Executables (Recommended)

1. Download the appropriate executable for your platform from the latest release (files named like `adb-proxy-socket-macos-x64.zip` (Intel), `adb-proxy-socket-macos-arm64.zip` (Silicon), or `adb-proxy-socket-win-x64.exe.zip`).
2. Unzip the executable.
Expand Down
12 changes: 9 additions & 3 deletions mcp/id-mcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,16 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

# Standard library imports
import sys

# Third-party imports
from mcp.server.fastmcp import FastMCP
from core import init, sendCommand, createCommand

# Local imports
import socket_client
import sys
from core import init, sendCommand, createCommand


#logger.log(f"Python path: {sys.executable}")
#logger.log(f"PYTHONPATH: {os.environ.get('PYTHONPATH')}")
Expand Down Expand Up @@ -137,4 +143,4 @@ def get_instructions() -> str:
"SUBTRACT",
"DIVIDE"
]
"""
"""
16 changes: 10 additions & 6 deletions mcp/pr-mcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,19 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

# Standard library imports
import io
import os
import sys
import tempfile

# Third-party imports
from mcp.server.fastmcp import FastMCP, Image
from PIL import Image as PILImage

from core import init, sendCommand, createCommand
# Local imports
import socket_client
import sys
import tempfile
import os
import io
from core import init, sendCommand, createCommand


#logger.log(f"Python path: {sys.executable}")
Expand Down Expand Up @@ -897,4 +901,4 @@ def get_instructions() -> str:
"VIVIDLIGHT",
"SUBTRACT",
"DIVIDE"
]
]
16 changes: 11 additions & 5 deletions mcp/ps-mcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,20 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

# Standard library imports
import base64
import os
import sys

# Third-party imports
import numpy as np
from mcp.server.fastmcp import FastMCP, Image

# Local imports
import socket_client
from core import init, sendCommand, createCommand
from fonts import list_all_fonts_postscript
import numpy as np
import base64
import socket_client
import sys
import os


FONT_LIMIT = 1000 #max number of font names to return to AI

Expand Down
2 changes: 1 addition & 1 deletion uxp/id/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@
]
}
]
}
}
4 changes: 2 additions & 2 deletions uxp/id/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "uxp-template-ps-starter",
"name": "uxp-template-id-starter",
"version": "1.0.0",
"description": "Adobe Photoshop MCP Agent Plugin.",
"description": "Adobe InDesign MCP Agent Plugin.",
"author": "Mike Chambers ([email protected])",
"license": "MIT"
}
2 changes: 1 addition & 1 deletion uxp/pr/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@
]
}
]
}
}
4 changes: 2 additions & 2 deletions uxp/pr/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "uxp-template-ps-starter",
"name": "uxp-template-pr-starter",
"version": "1.0.0",
"description": "Adobe Photoshop MCP Agent Plugin.",
"description": "Adobe Premiere MCP Agent Plugin.",
"author": "Mike Chambers ([email protected])",
"license": "MIT"
}
2 changes: 1 addition & 1 deletion uxp/ps/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@
]
}
]
}
}