MCP server for PICO-8 development. Token counting, code analysis, validation, minification, and cart comparison via shrinko8. Includes documentation resources. Compatible with any MCP client.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"pico8": {
"args": [
"run",
"/Users/ebonura/Desktop/repos/pico8-mcp-server/server.py"
],
"command": "uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for working with PICO-8 game carts, built on top of shrinko8.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
pico8_docsSaved PICO-8 documentation resources
pico8://docs/{doc_name}
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for Pico8 Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for working with PICO-8 game carts, built on top of shrinko8.
pico8://docs/api)git clone https://github.com/YOUR_USERNAME/pico8-mcp-server.git
cd pico8-mcp-server
git submodule update --init --recursive
uv sync
Add the server using the Claude CLI:
cd /Users/ebonura/Desktop/repos/pico8-mcp-server
claude mcp add pico8 --scope project -- uv run server.py
Or manually create a .mcp.json in your project root:
{
"mcpServers": {
"pico8": {
"command": "uv",
"args": ["run", "/Users/ebonura/Desktop/repos/pico8-mcp-server/server.py"]
}
}
}
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"pico8": {
"command": "uv",
"args": ["--directory", "/Users/ebonura/Desktop/repos/pico8-mcp-server", "run", "server.py"]
}
}
}
Once configured, you can ask Claude:
You can fetch and save PICO-8 documentation:
"Fetch the PICO-8 API reference from https://pico-8.fandom.com/wiki/APIReference
and save it as 'api'"
Once saved, Claude can automatically reference the documentation when helping with PICO-8 code.
MIT (inherits from shrinko8)