Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new MCP (Model Context Protocol) server package for building email templates programmatically via LLMs, using the
email-builderlibrary. It provides a complete implementation for template CRUD operations, block manipulation, HTML rendering, persistent storage, and resource previews. The changes include new documentation, configuration, and a fully structured codebase for the server.Major Features and Architecture:
Server and Tooling Implementation
@usewaypoint/mcp-serverpackage with full MCP server setup, tool registration for template and block operations, and resource handling for HTML previews. (packages/mcp-server/src/server.ts,packages/mcp-server/src/index.ts) [1] [2]Persistent Template Storage
packages/mcp-server/src/services/template-storage.ts)HTML Rendering and Resource Previews
packages/mcp-server/src/services/renderer.ts,packages/mcp-server/src/resources/template-preview.ts,packages/mcp-server/src/resources/index.ts) [1] [2] [3]Documentation and Configuration:
Comprehensive Documentation
README.mdfor the MCP server package, covering usage, architecture, available tools/resources, and development workflow. (packages/mcp-server/README.md)CLAUDE.mdto guide usage with Claude Code, including build/test commands, architecture overview, and code style.Package Setup
package.jsonfor the MCP server package with dependencies, scripts, and binary configuration. (packages/mcp-server/package.json)