π
Server
Educational project MCP Server
0 installs
Trust: 51 β Fair
Productivity
Installation
npx mcp-serverAsk AI about Server
Powered by Claude Β· Grounded in docs
I know everything about Server. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
MCP Server
The MCP Server project is a backend system for managing data and handling requests using the Model Context Protocol (MCP).
π Project Structure
main.goβ entry point of the application, sets up routes and starts the server.go.modandgo.sumβ Go dependency management files.internal/β internal application packages:app/β business logic and request handling.controllerβ mcp tools
migrations/β database migration scripts.deploy/β deployment configurations (Dockerfile, CI/CD scripts, etc.).LICENSEβ project license (MIT).
βοΈ Installation and Running
-
Clone the repository:
git clone https://github.com/mkorobovv/mcp-server.git cd mcp-server -
Install dependencies:
go mod tidy -
Run migrations with goose:
goose -dir ./migrations postgres "host=127.0.0.1 port=5432 user=books_service password=admin123 dbname=books sslmode=disable TimeZone=Europe/Moscow" up -
Run server:
go run main.go
The server will be available at http://localhost:8080
