CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Agentskin

shawn5cents/agentskin
authSTDIOregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

AgentSkin: Semantic Shorthand Standard (SSS)

npm version License: MIT

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 Protocol

The core of AgentSkin is the recursive pruning engine. It operates on a simple, declarative standard:

  1. Audit: Intercept raw data payloads.
  2. Signal Mapping: Define an array of required, high-density keys.
  3. Semantic Pivot: Apply an alias map to standardize inconsistent API schemas into a unified namespace.
  4. Flatten: Output a deterministic, hierarchical Markdown string.

Reference Implementation

This repository provides the official Node.js reference implementation of the SSS protocol, exposed as a standard MCP server.

Quickstart (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

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "agentskin": {
      "command": "npx",
      "args": ["-y", "agentskin@latest"]
    }
  }
}

Tools

The reference implementation exposes the following tools to AI agents:

1. fetch_optimized_data

Fetches any API or Web URL and returns a token-optimized "Skin." Token savings vary by data structure (benchmarked: 66-86% for typical API responses).

  • Arguments:
    • 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.

2. skin_reasoning

Optimizes natural language text by removing linguistic noise (hedging, filler).

  • Arguments:
    • text (string, required): The natural language string to distill.

Creating a Skin

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"
  }
}

Architecture

This package is designed as a Local-First, Open Studio.

  • All data fetching and pruning happens locally on the host machine.
  • User session state, cookies, and network access remain strictly local and private.
  • The core engine (skin-engine.js) operates without external dependencies for transformation.

Security

The reference implementation includes robust security measures:

  • SSRF Protection: Blocks private network ranges (IPv4: 127.x, 10.x, 172.16-31.x, 192.168.x; IPv6: ::1, ::ffff:, fe80:)
  • Cloud Metadata Blocking: Prevents access to GCP, Azure, and Kubernetes metadata services
  • Rate Limiting: 30 requests/minute sliding window per client
  • Input Validation: All tool inputs validated with Zod schemas
  • URL Sanitization: Dangerous URL schemes (javascript:, data:) stripped from HTML links
  • Processing Timeout: 30s limit prevents resource exhaustion

Documentation & Whitepaper

Read the full protocol specification and academic whitepaper at agentskin.dev.


Maintained by Nichols Transco LLC. Built for the machine economy.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

BRAVE_SEARCH_API_KEYsecret

Brave Search API Key

SERPER_API_KEYsecret

Serper.dev Search API Key

TAVILY_API_KEYsecret

Tavily Search API Key

APILAYER_KEYsecret

MediaStack API Key

Categories
Data & Analytics
Registryactive
Packageagentskin
TransportSTDIO
AuthRequired
UpdatedMar 13, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.