- Home
- MCP servers
- Templated IO
Templated IO
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"lucker631-mcp-templateio": {
"command": "node",
"args": [
"/absolute/path/to/mcp-templateio/dist/index.js"
],
"env": {
"TEMPLATED_API_KEY": "YOUR-API-KEY-HERE"
}
}
}
}You can run an MCP server that hosts image generation tooling using a templated image service. This server lets clients request image outputs built from a template by supplying text and image URLs, and it can be extended with additional tools to fit your workflow.
How to use
You interact with the server through an MCP client to invoke its available tools. For the image generation tool, you provide a template identifier, the images to place on specific template layers, and the text content to render. The server returns the generated image according to the template you chose.
Typical usage patterns include selecting a template, supplying a background image URL, a secondary background image for the yellow layer, and the build text that appears on the image. These inputs map directly to the fields exposed by the image generation tool.
How to install
Prerequisites you’ll need before starting include Node.js and npm. Ensure you have a suitable runtime installed on your system.
# Install dependencies
npm install
# Build the project
npm run build
Notes and troubleshooting
If you plan to run the server locally, you can start it after building. The following is an example command structure used to run the MCP server locally via a standard Node execution path.
node dist/index.js
Available tools
templated_image
Generates an image from a Templated.io template using provided text and image URLs for specific template layers.
example_tool
An example MCP tool illustrating the tool structure and usage patterns.