This document defines the product and engineering specification for a Model Context Protocol (MCP) server built around the EveApps repository.
The goal is to turn the Pre820 SDK and sample repository into an AI-assisted developer workflow that helps users:
- find the right sample faster
- understand Pre820 EVE API symbols
- map user requirements to commands and samples
- generate minimal screen scaffolds
- validate common mistakes in Pre820 application code (TBD)
- generate valid build commands for supported target configurations
This MCP server is intended to support both learning and production development workflows.
Recommended positioning names:
- Pre820 Application Builder Assistant
- Pre820 Sample Navigator
- Pre820 API Copilot
- Pre820 Board Porting Assistant (TBD)
Primary value proposition:
- reduce onboarding time for new developers
- reduce repeated support / FAE effort
- improve discoverability of samples and APIs
- provide repo-grounded guidance instead of generic code generation
The MCP server should:
- index commands, constants, registers, and samples from the repo
- expose repo-grounded resources to AI clients
- provide tools for search, explanation, build guidance, and scaffold generation
- produce deterministic, structured outputs
- prioritize existing repo samples over invented code patterns
The MCP server should not:
- modify the repo automatically
- generate full production applications from scratch
- replace the Pre820 programming guide or datasheet
- invent symbols, macros, or APIs not present in indexed source data
- require a vector database in the first release
Typical needs:
- Which sample should I start from?
- What does this command do?
- How do I build for RP2040?
Typical needs:
- How do I build a touch menu?
- Which commands are involved in animation?
- Can you generate a minimal screen skeleton?
Typical needs:
- Which repo sample best matches this customer use case?
- What does
REG_TOUCH_TAGmean? - Why does this code look structurally wrong?
The system consists of two major parts:
- offline indexer
- MCP server
The indexer scans the EveApps repo and generates structured JSON artifacts:
commands.jsonsamples.jsonregisters.jsonbuild_matrix.jsonfeature_graph.json
The MCP server loads these JSON artifacts and exposes:
- resources
- tools
- prompts
Recommended implementation:
- Language: TypeScript
- Runtime: Node.js 20+
- Transport: stdio
- Data source: local JSON files
This guide explains how to connect the EveApps-Pre82x MCP Server to your local EveApps workspace, enabling AI assistants to understand the EveApps SDK, browse samples, and provide project-aware assistance.
From the root of this repository, install the locked dependencies and build all packages:
npm ci
npm run buildUse npm ci for fresh checkouts and CI builds. It installs the versions recorded in package-lock.json and fails if the lockfile and package manifests are out of sync.
Commit the root package-lock.json to GitHub. This npm workspace uses one shared lockfile; run dependency commands from the repository root rather than creating lockfiles in individual packages. When adding or updating dependencies, use npm install (with --workspace <package-name> for a workspace package) and commit the changed package.json files together with package-lock.json. Keep node_modules/ ignored by Git.
The installation instructions below are for using the published MCP server with an EveApps checkout.
Before you begin, make sure you have:
- Node.js (version 18 or later recommended)
You can verify your Node.js installation:
node -v
npm -vClone or download the EveApps repository to your local machine.
Example:
git clone https://github.com/Bridgetek/EveAppsSuppose the repository is located at:
D:\EveAppsnpm install -g @bridgetek/eveapps-pre82x-mcp-serverAfter installation, you can verify it by running:
eveapps-pre82x-mcp-server --helpOpen the EveApps folder in Visual Studio Code.
In the root directory of the repository, create a new file named:
.mcp.json
Add the following content:
{
"mcpServers": {
"EveApps-Pre82x": {
"command": "eveapps-pre82x-mcp-server",
"args": [
"--eveapps",
"D:\\EveApps"
]
}
}
}
Replace:
D:\\EveApps
with the actual path to your local EveApps repository.
For example:
{
"mcpServers": {
"EveApps-Pre82x": {
"command": "eveapps-pre82x-mcp-server",
"args": [
"--eveapps",
"C:\\Users\\John\\Documents\\EveApps"
]
}
}
}
Note
- Use double backslashes (\) in Windows paths inside JSON files.
- Alternatively, you may use forward slashes: "D:/EveApps"
Save the .mcp.json file.
Close and reopen Visual Studio Code (or reload the window) so that the MCP configuration is detected and the EveApps-Pre82x MCP Server starts.
Open Claude Code and run:
/mcp
Confirm that the EveApps-Pre82x MCP Server appears in the list and shows a connected status.
Once connected, you can start using the server by asking questions such as:
What tools do you have for Pre820?
If the MCP server is configured correctly, Claude Code should list the available Pre820 development tools.
Open the Claude Desktop MCP configuration file("claude_desktop_config.json") and add a new EveApps-Pre82x server entry.
Example configuration:
{
"mcpServers": {
"EveApps-Pre82x": {
"command": "eveapps-pre82x-mcp-server",
"args": [
"--eveapps",
"D:\\EveApps"
]
}
}
}
Replace the path with the location of your local EveApps repository.
Save the configuration file, completely close Claude Desktop, and then launch it again to ensure the new MCP configuration is loaded.
Start a new conversation and ask:
What tools do you have for Pre820?
If the server starts successfully, Claude Desktop will be able to access the Pre820-specific tools provided by the MCP server.
Verify that the package was installed successfully:
npm install -g eveapps-pre82x-mcp-serverThen check:
eveapps-pre82x-mcp-server --helpIf the command is still not found, ensure that your global npm installation path is included in your system PATH environment variable.
Check that:
- .mcp.json is located in the root of the EveApps workspace.
- The --eveapps path points to the correct local repository.
- Visual Studio Code has been restarted after creating or modifying .mcp.json.
EveApps/
│
├── .mcp.json
├── common/
├── SampleApp/
└── ...