This is a Go-based Actor template project designed for MCP (specific domain abbreviation, to be clarified based on actual context) related service development. It provides a basic service framework and configuration templates to facilitate rapid development startup.
- Go 1.20+ (latest stable version recommended)
- Docker (optional, for containerized deployment)
- Clone the project to your local machine:
git clone https://github.com/scrapeless-ai/actor-template-go-mcp.git
cd github.com/scrapeless-ai/actor-template-go-mcp
- Download dependencies:
go mod download
Start the service directly:
go run main.go
.actor/ # Actor configuration files (including input schema, etc.)
.env.example # Environment variable example
Dockerfile # Docker build configuration
go.mod # Go module dependencies
go.sum # Go dependency verification
main.go # Main entry file
server/ # Service-related code
└── server.go # Core service logic
Welcome to submit Issues or Pull Requests to improve the project. Before submission, ensure the code passes tests and update relevant documentation.
This project is licensed under the MIT License. See the LICENSE file for details (if applicable).