Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types. skinguide-mcp-server **MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types.** $1 $1 $1 $1 | | | |---|---| | Website | $1 | | GitHub | $1 | | Protocol | $1 | | Transports | stdio (npx) | --- Table of Contents - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 --- Overview SkinGuide MCP Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
skinguide-mcp-server is best for mcp-server, ai-tool, skincare workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types. skinguide-mcp-server **MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types.** $1 $1 $1 $1 | | | |---|---| | Website | $1 | | GitHub | $1 | | Protocol | $1 | | Transports | stdio (npx) | --- Table of Contents - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 --- Overview SkinGuide MCP
Public facts
3
Change events
0
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Skinguide
Artifacts
0
Benchmarks
0
Last release
1.0.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/robertozerbini/skinguide-mcp-server.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Skinguide
Protocol compatibility
MCP
Handshake status
UNKNOWN
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
text
skinguide-mcp-server/
├── stdio.js # MCP stdio entry-point (run via npx)
├── package.json
├── api/
│ └── tools.js # Tool handlers + live API proxy
├── examples/
│ ├── python_client.py # Python demo (stdlib only)
│ └── node_client.js # Node.js demo (built-in fetch)
└── .well-known/
└── mcp.json # MCP discovery documentjson
{
"mcpServers": {
"skinguide": {
"command": "npx",
"args": ["skinguide-mcp-server"]
}
}
}json
{
"mcpServers": {
"skinguide": {
"command": "npx",
"args": ["skinguide-mcp-server"]
}
}
}json
{
"servers": {
"skinguide": {
"type": "stdio",
"command": "npx",
"args": ["skinguide-mcp-server"]
}
}
}bash
curl https://skinguide.beauty/.well-known/mcp.json
bash
curl https://skinguide.beauty/.well-known/mcp.json
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types. skinguide-mcp-server **MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types.** $1 $1 $1 $1 | | | |---|---| | Website | $1 | | GitHub | $1 | | Protocol | $1 | | Transports | stdio (npx) | --- Table of Contents - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 --- Overview SkinGuide MCP
MCP server for SkinGuide: search skincare products by Baumann skin type, product category, country, and budget. Exposes AI-friendly endpoints for dry, sensitive, and other skin types.
| | | |---|---| | Website | skinguide.beauty | | GitHub | robertozerbini/skinguide-mcp-server | | Protocol | Model Context Protocol 2024-11-05 | | Transports | stdio (npx) |
SkinGuide MCP Server implements the Model Context Protocol to expose skincare product search and skin type information as structured AI tools.
AI agents, LLM applications, and developer tools can:
| Tool | Description |
|---|---|
| search_products | Search products by skin type, category, country, and budget |
| get_skin_type_info | Detailed info for a Baumann skin type code |
| list_skin_types | All 16 Baumann codes with names, categories, and descriptions |
| get_product_types | All available product categories |
skinguide-mcp-server/
├── stdio.js # MCP stdio entry-point (run via npx)
├── package.json
├── api/
│ └── tools.js # Tool handlers + live API proxy
├── examples/
│ ├── python_client.py # Python demo (stdlib only)
│ └── node_client.js # Node.js demo (built-in fetch)
└── .well-known/
└── mcp.json # MCP discovery document
No installation required. The MCP server runs on-demand via npx and fetches live product data from https://skinguide.beauty/api/products.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"skinguide": {
"command": "npx",
"args": ["skinguide-mcp-server"]
}
}
}
Edit .cursor/mcp.json:
{
"mcpServers": {
"skinguide": {
"command": "npx",
"args": ["skinguide-mcp-server"]
}
}
}
Edit .vscode/mcp.json:
{
"servers": {
"skinguide": {
"type": "stdio",
"command": "npx",
"args": ["skinguide-mcp-server"]
}
}
}
curl https://skinguide.beauty/.well-known/mcp.json
| Variable | Default | Description |
|---|---|---|
| LIVE_API_URL | https://skinguide.beauty/api | Base URL for the live SkinGuide API |
All tools are invoked by the MCP client (Claude, Cursor, VS Code) over stdio. The JSON-RPC 2.0 envelope used internally:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "<tool_name>",
"arguments": {}
}
}
List all 16 Baumann skin types. Input: none.
Response excerpt:
{
"skinTypes": [
{
"code": "DSPW",
"name": "Dry, Sensitive, Pigmented, Wrinkled",
"category": "dry-sensitive",
"difficulty": 5,
"description": "The most complex skin type. Needs rich hydration, anti-inflammatory care, brightening, and anti-aging support simultaneously."
},
{
"code": "DSNW",
"name": "Dry, Sensitive, Non-pigmented, Wrinkled",
"category": "dry-sensitive",
"difficulty": 4,
"description": "Dry and sensitive with visible aging but even tone. Prioritise deep hydration, barrier repair, and anti-aging actives."
}
],
"total": 16
}
(14 more types omitted — all 16 returned in the real response)
List all available product categories. Input: none.
{
"productTypes": [
{ "id": "Acne Treatment" },
{ "id": "Anti-Inflammatory Moisturizing" },
{ "id": "Anti-Inflammatory Product" },
{ "id": "Anti-age serum" },
{ "id": "Anti-inflammatory Product" },
{ "id": "Antioxidant Serum" },
{ "id": "At-Home Peel" },
{ "id": "Benzoyl Peroxide" },
{ "id": "Blushes" },
{ "id": "Body Moisture" },
{ "id": "Bottler" },
{ "id": "Cleanser" },
{ "id": "Concealers" },
{ "id": "Dark Spot Treatment" },
{ "id": "Exfoliation" },
{ "id": "Eye Cream" },
{ "id": "Face Massage" },
{ "id": "Facial Peels" },
{ "id": "Facial Scrub" },
{ "id": "Facial Water" },
{ "id": "Foundation" },
{ "id": "Kits" },
{ "id": "Lightening" },
{ "id": "Mask" },
{ "id": "Microdermabrasion" },
{ "id": "Moisturizer" },
{ "id": "Moisturizer Day" },
{ "id": "Moisturizer Night" },
{ "id": "Oil-control Powder" },
{ "id": "Oil-control Product" },
{ "id": "Oil-control product" },
{ "id": "Pimple Medication" },
{ "id": "Powder" },
{ "id": "Retinol Product" },
{ "id": "Scrub" },
{ "id": "Self-tanning" },
{ "id": "Serum" },
{ "id": "Skin Lightener" },
{ "id": "Spot Treatment" },
{ "id": "Sulfur Mask" },
{ "id": "Sunscreen" },
{ "id": "Toner" },
{ "id": "Wrinkle Prevention" }
],
"total": 43
}
Input: skinType (string, required) — 4-letter Baumann code, e.g. OSPT, DRNT, DSPW.
Response:
{
"code": "OSPT",
"name": "Oily, Sensitive, Pigmented, Tight",
"category": "oily-sensitive",
"difficulty": 4,
"description": "Very common in teens and young adults. Oily, acne-prone, and sensitive with post-inflammatory dark spots."
}
Input parameters:
| Parameter | Type | Description |
|---|---|---|
| od | "O" or "D" | Oily or Dry axis |
| sr | "S" or "R" | Sensitive or Resistant axis |
| pn | "P" or "N" | Pigmented or Non-pigmented axis |
| wt | "W" or "T" | Wrinkled or Tight axis |
| type | string | Product category. Call get_product_types for the full list. |
| budget | number | Maximum price in dollars (use 5, 10, 20, 50, 100, or 101 for over $100) |
| country | "US" or "UAE" | Country. Defaults to US. |
| limit | integer | Max results, 1–50 (default 50) |
Example — oily + sensitive skin (od=O, sr=S), budget $30:
Arguments:
{ "od": "O", "sr": "S", "budget": 30, "limit": 5 }
Response:
{
"total": 5,
"query": { "type": "all", "country": "US", "od": "O", "sr": "S", "pn": null, "wt": null, "budget": 30 },
"products": [
{
"id": 534,
"name": "Persa-Gel 10 Oil-Free Acne Spot Treatment with Maximum Strength 10% Benzoyl Peroxide, Topical Pimple Cream Visibly Reduces Acne in One Day, Fragrance-Free, 1 fl. oz",
"brand": "Clean & Clear",
"type": "Acne Treatment",
"price": 5.97,
"currency": "$",
"size": null,
"image": "https://m.media-amazon.com/images/I/612wW4IikOL._AC_UL320_.jpg",
"link": "https://amzn.to/4aTFj3m",
"country": "US",
"skinTypes": ["OSPT"]
}
]
}
The Baumann Skin Type Indicator (BSTI) classifies skin along four binary axes:
| Axis | Options | Meaning | |---|---|---| | O/D | O = Oily, D = Dry | Sebum production | | S/R | S = Sensitive, R = Resistant | Skin reactivity | | P/N | P = Pigmented, N = Non-pigmented | Pigmentation tendency | | W/T | W = Wrinkled, T = Tight | Aging / wrinkle tendency |
Combined: 16 unique types (DRNT = easiest, DSPW = most complex).
| Code | Name | Category | Difficulty | |---|---|---|---| | DRNT | Dry, Resistant, Non-pigmented, Tight | dry-resistant | 1 | | DRNW | Dry, Resistant, Non-pigmented, Wrinkled | dry-resistant | 2 | | DRPT | Dry, Resistant, Pigmented, Tight | dry-resistant | 2 | | DRPW | Dry, Resistant, Pigmented, Wrinkled | dry-resistant | 3 | | DSNT | Dry, Sensitive, Non-pigmented, Tight | dry-sensitive | 2 | | DSNW | Dry, Sensitive, Non-pigmented, Wrinkled | dry-sensitive | 4 | | DSPT | Dry, Sensitive, Pigmented, Tight | dry-sensitive | 3 | | DSPW | Dry, Sensitive, Pigmented, Wrinkled | dry-sensitive | 5 | | ORNT | Oily, Resistant, Non-pigmented, Tight | oily-resistant | 1 | | ORNW | Oily, Resistant, Non-pigmented, Wrinkled | oily-resistant | 2 | | ORPT | Oily, Resistant, Pigmented, Tight | oily-resistant | 2 | | ORPW | Oily, Resistant, Pigmented, Wrinkled | oily-resistant | 3 | | OSNT | Oily, Sensitive, Non-pigmented, Tight | oily-sensitive | 3 | | OSNW | Oily, Sensitive, Non-pigmented, Wrinkled | oily-sensitive | 4 | | OSPT | Oily, Sensitive, Pigmented, Tight | oily-sensitive | 4 | | OSPW | Oily, Sensitive, Pigmented, Wrinkled | oily-sensitive | 5 |
The MCP server communicates over stdio and works with any AI client that supports MCP. Configure it as shown in the Quick Start section above.
For a deeper look at the JSON-RPC 2.0 request/response format used over the wire, see the demo clients in the examples/ directory.
Two demo clients are included in the examples/ directory. They demonstrate all four tools and the full JSON-RPC 2.0 protocol format. Both are HTTP-based and require a self-hosted MCP HTTP server to be running.
# Node.js (built-in fetch, Node >= 18)
node examples/node_client.js --url http://localhost:3000
# Python (stdlib only)
python3 examples/python_client.py --url http://localhost:3000
GET https://skinguide.beauty/.well-known/mcp.json
The document describes server name, version, URL, transport options, and all tools with full JSON Schema input/output definitions — ready for AI agent auto-discovery.
git checkout -b feat/my-featuregit commit -m 'feat: add my feature'Please follow Conventional Commits.
MIT — © SkinGuide · skinguide.beauty
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T06:05:20.889Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp-server",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai-tool",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "skincare",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "baumann-skin-type",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "skinguide",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "beauty",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "dermatology",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai-agent",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp-server|supported|profile capability:ai-tool|supported|profile capability:skincare|supported|profile capability:baumann-skin-type|supported|profile capability:model-context-protocol|supported|profile capability:skinguide|supported|profile capability:beauty|supported|profile capability:dermatology|supported|profile capability:ai-agent|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Skinguide",
"href": "https://skinguide.beauty/",
"sourceUrl": "https://skinguide.beauty/",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:13:43.122Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:13:43.122Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-robertozerbini-skinguide-mcp-server/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[]
Sponsored
Ads related to skinguide-mcp-server and adjacent AI workflows.