caveman-core-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@caveman-core-mcpExplain photosynthesis in caveman style"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
caveman-core-mcp
MCP server that teaches LLMs to respond in compressed caveman-style prose.
Cuts output tokens ~65% while keeping full technical accuracy. Zero external dependencies.
What it exposes
Prompts
Name | Effect |
| Full mode — drops articles, fillers, fragments OK |
| Lite mode — removes filler/hedging, keeps articles and full sentences |
| Ultra mode — maximum compression, one word when one word enough |
Resources
URI | Content |
| Full ruleset text |
| Lite ruleset text |
| Ultra ruleset text |
Tools
Name | Description |
| Post-process any text through the compression algorithm |
Related MCP server: caveman-mcp
Install
{
"mcpServers": {
"caveman": {
"command": "node",
"args": ["/path/to/caveman-core-mcp/src/index.js"]
}
}
}Or with npx after publishing:
{
"mcpServers": {
"caveman": {
"command": "npx",
"args": ["caveman-core-mcp"]
}
}
}Usage
Inject via prompt (recommended)
Use the caveman prompt at session start. The host sends the ruleset as context and the LLM adopts compressed mode for the rest of the session.
Inject via resource
Read caveman://rules and include the text in your system prompt manually.
Post-process text
Call the compress_text tool to strip filler from any already-generated text.
{
"name": "compress_text",
"arguments": {
"text": "Sure! I'd be happy to help you with that. The issue you're experiencing is likely caused by a missing semicolon."
}
}Returns:
{
"content": [{ "type": "text", "text": "Issue caused by missing semicolon." }],
"_meta": { "before": 95, "after": 35, "savedPercent": 63 }
}Requirements
Node.js >= 18
No npm dependencies
Origin
Based on caveman by Julius Brussee (MIT).
src/compress.js— derived fromsrc/mcp-servers/caveman-shrink/compress.jssrc/skill.js— derived fromskills/caveman/SKILL.mdsrc/index.js— new standalone MCP server built on top of the above
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server that helps AI agents reduce token usage by compressing, summarizing, and managing conversation/context data more efficiently.11MIT
- AlicenseAqualityDmaintenanceMCP server that compresses markdown files into caveman-style prose, cutting token usage by 65% while preserving code and structure.3MIT
- AlicenseAqualityCmaintenanceAn MCP server that reduces AI API costs by up to 97% through token measurement, compression, caching, and pruning, all without changing prompts.101Apache 2.0
- FlicenseBqualityCmaintenanceLocal MCP server for token optimization, providing tools to compress code/JSON, optimize prompts, and manage placeholder-based content redaction and hydration to reduce LLM token usage.5
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for Flux AI image generation
Cloud-hosted MCP server for durable AI memory
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MatheusPCardoso/caveman-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server