Tugboat MCP Server
About
A Model Context Protocol (MCP) server for interacting with the Tugboat API.
Details
- Author
- Lullabot
- GitHub stars
- 3
- Downloads
- 312
- Categories
- Other
Jump to
- Access Tugboat projects, previews, and repositories
- Create, build, refresh, and delete previews
- Search for Tugboat resources
- View preview logs
- Support for both stdio and HTTP transports
- Authentication and authorization support
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Tugboat MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install by cloning the repository and running npm install && npm run build. Set the required environment variable TUGBOAT_API_KEY (and optionally TRANSPORT_TYPE, PORT, TUGBOAT_API_URL). Configure the server as an MCP tool in Claude Desktop or Cursor using the provided JSON/command template, or run it directly with HTTP transport for API access.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"tugboat mcp server": {
"tugboat-mcp": {
"command": "node",
"args": [
"/path/to/tugboat-mcp/dist/index.js"
],
"env": {
"TUGBOAT_API_KEY": ""
}
}
}
}
}
McpServers
{
"tugboat-mcp": {
"command": "node",
"args": [
"/path/to/tugboat-mcp/dist/index.js"
],
"env": {
"TUGBOAT_API_KEY": ""
}
}
}
Tugboat MCP Server
A Model Context Protocol (MCP) server for interacting with the Tugboat API. This server allows AI assistants like Claude to access and manipulate Tugboat resources through the standardized MCP interface.
What is MCP?
The Model Context Protocol (MCP) is an open protocol created by Anthropic that enables seamless integration between AI assistants and external data sources or tools. It provides a standardized way for AI models to:
- Access resources (data and context)
- Use tools (functions to perform actions)
- Follow prompts (templated workflows)
This Tugboat MCP server implements the protocol to expose Tugboat's API capabilities to AI assistants like Claude.
Features
- Access Tugboat projects, previews, and repositories
- Create, build, refresh, and delete previews
- Search for Tugboat resources
- View preview logs
- Support for both stdio and HTTP transports
- Authentication and authorization support
Architecture
The server follows a modular architecture:
- Core: Main server setup and configuration management
- Resources: Exposes Tugboat entities as MCP resources
- Tools: Implements functions to interact with Tugboat API
- Utils: API client and configuration utilities
- Auth: Authentication and authorization management
- Middleware: HTTP request handling for authentication
Installation
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



