{
"mcpServers": {
"mcpserverkotlin": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 133 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for McpServerKotlin and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) Full-Stack Server implemented in Kotlin that enables AI agents to autonomously build and manage applications.
This server implements the MCP protocol to provide AI agents with powerful capabilities:
✅ Security First
✅ Kubernetes Ready
✅ Observable
✅ CI/CD Ready
./gradlew build
./gradlew run
Or with custom configuration:
export MCP_HOST=0.0.0.0
export MCP_PORT=3000
export MCP_WORKING_DIR=/workspace
./gradlew run
docker build -t mcp-fullstack-server -f docker/Dockerfile .
docker run -p 3000:3000 mcp-fullstack-server
# Run all tests
./gradlew test
# Run specific test class
./gradlew test --tests "BashExecutorTest"
# Run with coverage report
./gradlew test jacocoTestReport
For detailed testing instructions, see TESTING_GUIDE.md.
The server is configured via src/main/resources/application.conf. You can override settings using environment variables:
MCP_HOST: Server host (default: 0.0.0.0)MCP_PORT: Server port (default: 3000)MCP_ALLOWED_DIRS: Comma-separated list of allowed directoriesMCP_MAX_FILE_SIZE: Maximum file size in bytes (default: 10MB)MCP_ALLOWED_COMMANDS: Comma-separated list of allowed commandsMCP_WORKING_DIR: Working directory for bash commandsMCP_COMMAND_TIMEOUT: Command timeout in seconds (default: 300)MCP_REPO_PATH: Path to git repositoryGITHUB_TOKEN: GitHub personal access tokenPOSTGRES_HOST, POSTGRES_PORT, POSTGRES_DB, POSTGRES_USER, POSTGRES_PASSWORDMONGODB_CONNECTION_STRING, MONGODB_DBMCP_MEMORY_PATH: Path for knowledge graph storagemcp-fullstack-server/
├── src/main/kotlin/com/apptolast/mcp/
│ ├── Application.kt # Main application entry point
│ ├── server/
│ │ └── ServerConfig.kt # Configuration management
│ ├── modules/
│ │ ├── filesystem/ # Filesystem operations
│ │ ├── bash/ # Bash command execution
│ │ ├── github/ # Git/GitHub integration
│ │ ├── memory/ # Knowledge graph memory
│ │ ├── database/ # Database connectors
│ │ └── resources/ # Resource management
│ ├── transport/
... [View full README on GitHub](https://github.com/apptolast/McpServerKotlin#readme)