This is a local proxy layer that sits between Claude and any HTTP endpoint you're hitting. It exposes two tools: fetch_optimized_data pulls from APIs or web URLs and strips out verbose keys you don't need, returning compact Markdown instead of bloated JSON, and skin_reasoning compresses natural language by removing filler words. You pass in the URL plus optional signals (keys to keep) and aliases (renames for consistency). The repo claims 70% token reduction on typical API responses. It includes SSRF protection, rate limiting, and blocks cloud metadata endpoints. Reach for this when you're burning tokens on repetitive API calls with huge payloads where you only need a handful of fields, or when chaining multiple web requests in a reasoning loop.
AgentSkin is an open-source protocol and reference Model Context Protocol (MCP) server that establishes the Semantic Shorthand Standard (SSS) for Agentic Perception.
The protocol defines a standardized method for recursively pruning high-entropy, human-readable data (HTML, bloated JSON, complex APIs) into low-entropy, deterministic Markdown "Skins." This significantly reduces LLM token consumption (the "Token Tax") and eliminates perceptual drag in autonomous reasoning loops.
The core of AgentSkin is the recursive pruning engine. It operates on a simple, declarative standard:
This repository provides the official Node.js reference implementation of the SSS protocol, exposed as a standard MCP server.
You can run the AgentSkin reference server directly via npx to provide your local AI assistants (Claude Desktop, Cursor, etc.) with the fetch_optimized_data tool.
npx -y agentskin@latest
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"agentskin": {
"command": "npx",
"args": ["-y", "agentskin@latest"]
}
}
}
The reference implementation exposes the following tools to AI agents:
fetch_optimized_dataFetches any API or Web URL and returns a token-optimized "Skin." Token savings vary by data structure (benchmarked: 66-86% for typical API responses).
url (string, required): The target data source.signals (string[], optional): An array of semantic keys to preserve.aliases (object, optional): A map to rename original keys to standardized signals.skin_reasoningOptimizes natural language text by removing linguistic noise (hedging, filler).
text (string, required): The natural language string to distill.AgentSkin is a factory for intelligent perception. You provide the mapping; the protocol provides the engine.
When using the fetch_optimized_data tool, provide the signals and aliases parameters to build your own skin.
Example: Weather API Skin
{
"url": "https://api.weather.gov/gridpoints/TOP/31,80/forecast",
"signals": ["temperature", "windspeed", "shortforecast"],
"aliases": {
"temperature": "temp",
"shortforecast": "forecast"
}
}
This package is designed as a Local-First, Open Studio.
skin-engine.js) operates without external dependencies for transformation.The reference implementation includes robust security measures:
Read the full protocol specification and academic whitepaper at agentskin.dev.
Maintained by Nichols Transco LLC. Built for the machine economy.
BRAVE_SEARCH_API_KEYsecretBrave Search API Key
SERPER_API_KEYsecretSerper.dev Search API Key
TAVILY_API_KEYsecretTavily Search API Key
APILAYER_KEYsecretMediaStack API Key
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json