Lippia Custom MCP Server for Autonomous Agents
Deploy the Lippia custom MCP server to connect and manage any Autonomous Agent supporting the protocol for seamless integration and control.
Overview
Lippia Custom MCP Server is a Java-based Model Context Protocol (MCP) server built to integrate with any Autonomous Agent that implements the MCP standard. It exposes a set of automation primitives, test-generation capabilities and reporting utilities over both StdIO and HTTP REST transports so agents can orchestrate end-to-end UI automation, exploratory navigation, and test execution workflows programmatically.
The server is intended for developers who want to run Lippia as a self-hosted MCP-compatible endpoint. An agent can drive feature generation, create glue code, execute suites, and receive structured reports and progress notifications. This decoupled approach makes it straightforward to plug Lippia into multi-agent systems, CI pipelines, or custom orchestration layers.
Features
- Support for MCP over StdIO and HTTP REST transports
- Autonomous feature and test generation (create_feature, create_test)
- Test execution orchestration (execute_test) with result reporting
- Navigation and UI actions: open_browser, close_browser, navigate_to, click, type, screenshot, get_text, get_page_title, get_current_url, get_page_source
- Wait helpers: wait_clickable, wait_visibility, wait_presence, wait_invisibility, etc.
- Verification utilities: is_enabled, is_selected, is_present, is_visible
- Integration hooks for chat/notification platforms (Google Chat, Slack, Teams, Discord)
- Built on Java 17+, Spring Boot and the MCP Java SDK for extensibility and production-ready operation
Installation / Configuration
Prerequisites:
- Java 17+ installed
- Maven 3.x
- Optional: Docker for containerized runs
Clone and build:
Run the server (HTTP REST mode, default Spring Boot properties):
Run the server in StdIO mode (intended when the agent launches the process and communicates via stdin/stdout):
# Example environment variable to select transport (implementation may vary)
Configuration notes:
- Use standard Spring Boot properties (application.yml / application.properties) to configure HTTP port, logging, credentials and persistence.
- Notification integrations (Slack/Teams) typically require webhook URLs or bot credentials — configure them as environment variables or in config files.
- The server exposes MCP endpoints and/or listens for MCP messages over StdIO depending on the transport selected.
Docker (optional):
FROM eclipse-temurin:17-jre
COPY target/lippia-mcp-server.jar /app/lippia-mcp-server.jar
CMD ["java","-jar","/app/lippia-mcp-server.jar"]
Build and run:
Available Resources
Key categories of server capabilities:
| Category | Examples |
|---|---|
| Navigation / Actions | open_browser, close_browser, navigate_to, click, type, screenshot |
| Waits | wait_clickable, wait_visibility, wait_presence, wait_invisibility |
| Verifications | is_enabled, is_selected, is_present, is_visible |
| Build & Reporting | create_feature, create_test, execute_test, send_report |
| Transports | StdIO, HTTP REST |
These resources are exposed as MCP commands/messages. The server stores mapping information generated during autonomous navigation to help glue-code generation and test orchestration.
Use Cases
Autonomous feature generation from user stories
- Developer or CI job sends user stories to the agent.
- Agent requests
create_featurefrom the MCP server. - Server returns a Gherkin feature file and location.
- Example (pseudo-MCP request):
- The agent fetches the generated feature and proceeds to create glue code.
Exploratory navigation and test discovery
- Agent drives the server’s navigation actions (open_browser, navigate_to, click) to map flows.
- Server keeps an in-memory application map used by
create_testto propose test cases. - Example: agent issues
navigate_to+clicksequences; server returns discovered page elements and suggested assertions.
Automated test execution in CI
- CI job triggers
execute_testwith a test suite identifier. - Server runs the suite using WebDriver browsers, captures screenshots and results.
- After completion,
send_reportposts results to Slack or a configured notification channel.
- CI job triggers
Complex form automation and visual validation
- Agent instructs the server to fill out multi-step forms using
type,click, and validation checks (is_visible,is_present). - Server captures screenshots at checkpoints and uses AI-assisted analysis to validate UI states, returning enriched reports.
- Agent instructs the server to fill out multi-step forms using
Quick Reference — Example MCP message (illustrative)
Request to execute a test:
Typical response:
Use the executionId to query progress or request