S
SendGrid
Send transactional email through SendGrid.
·No reviews yet
Share:
About
Auto-generated
SendGrid is a Model Context Protocol server in the Communication category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about SendGrid.
- What is the SendGrid MCP for?
- The SendGrid MCP allows you to send transactional emails using the SendGrid service. It integrates email capabilities into applications by providing a standardized interface for sending messages.
- How do I configure the SendGrid MCP in Cline?
- To configure the SendGrid MCP in Cline, you would specify 'stdio' as the transport and provide your SendGrid API key for authentication. The exact configuration steps depend on your Cline version and deployment.
- Does the SendGrid MCP require an API key?
- Yes, authentication for the SendGrid MCP is performed using an API key. This key is necessary to authorize sending emails through the SendGrid service.
- What are the typical use cases for the SendGrid MCP?
- Typical use cases include sending order confirmations, password reset emails, and other automated transactional messages. It is designed for applications that need reliable email delivery for their users.
- Is there a cost associated with using the SendGrid MCP?
- The SendGrid MCP itself is open source. However, using the SendGrid service incurs costs based on your SendGrid plan and email volume. Refer to SendGrid's pricing for details.
Install SendGrid
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"sendgrid": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sendgrid"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"sendgrid": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sendgrid"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"sendgrid": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sendgrid"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.