MCP Server Factory
jayessdeesea
README
MCP Server Factory
A Java-based Model Context Protocol (MCP) server designed to help understand and build other MCP servers.
Project Overview
This project serves as both a learning tool and a guide for building MCP servers. It focuses on providing:
-
Understanding of MCP Components:
- Tools (executable functions that perform actions)
- Resources (data sources that provide information)
- Prompts (structured templates that generate responses)
-
Templates and Best Practices for building MCP servers
Features
-
Tools Section:
explain_concept
- Provides detailed explanations of MCP concepts (tool, resource, prompt, server, client)- Task Planner Tools:
code_cleanup_planner
- Generates a task plan for code cleanup objectivesfeature_implementation_planner
- Generates a task plan for feature implementation objectivesgeneral_task_planner
- Generates a task plan for general objectiveslocal_mcp_deployment_planner
- Generates a task plan for deploying local MCP servers with critical clean and test steps that abort deployment on failure
-
Resources Section:
mcp://factory/documentation/{topic}
- Documentation on MCP topics (getting-started, best-practices, troubleshooting)
-
Prompts Section:
tool_implementation_guide
- Step-by-step guide for implementing MCP tools in different languages
Architecture
The MCP Server Factory is built using:
- Java with Spring Framework (not Spring Boot)
- log4j2 for logging implementation
- Maven for build management
Following the design principles:
- KISS (Keep It Simple, Stupid)
- DRY (Don't Repeat Yourself)
- YAGNI (You Aren't Gonna Need It)
- SOLID (Single responsibility, Open-closed, Liskov substitution, Interface segregation, Dependency inversion)
Project Structure
-
src/main/java/user/jakecarr/
- Main source code.../config/
- Spring configuration.../main/
- Classes with main methods.../model/
- Domain models and interfaces.../model/impl/
- Implementations of MCP components.../service/
- Business logic and services
-
docs/api/
- API documentationprompts.md
- Documentation for supported promptsresources.md
- Documentation for supported resourcestools.md
- Documentation for supported tools
Code Quality
The codebase follows high-quality standards:
- Well-structured code with clear separation of concerns
- Comprehensive documentation with Javadoc comments for all classes and methods
- Modular design with abstract base classes and interfaces
- Consistent error handling with proper logging
- Maintainable architecture with extracted methods and helper functions
- Clean code practices including:
- Descriptive naming conventions
- Single responsibility principle
- DRY (Don't Repeat Yourself) principle
- Proper encapsulation
Building and Running
Prerequisites
- Java 21 or higher
- Maven 3.6 or higher
- MCP Java SDK 0.8.1 (located at
C:/Users/jayes/vscode/java-sdk-0.8.1/java-sdk-0.8.1.jar
)
Building the Project
# Clone the repository
git clone https://github.com/yourusername/mcp-server-factory.git
cd mcp-server-factory
# Build the project
mvn clean package
Running the Server
# Run the server
java -jar target/mcp-server-factory-1.0-SNAPSHOT-jar-with-dependencies.jar
Running the Tests
# Run the tests
mvn test
Development Guidelines
- Core business logic must not depend on Spring
- Spring annotations only in the config package
- No mocks in src/main/java
- No recursion
- Tests should include timeouts
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Run the tests
- Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.