ENDPOINT 1
https://0layers.com/api/mcp
MCP server metadata
- Name
- 0layers
- Version
- 1.0.0
0layers turns a business website into on-brand social media content. The usual sequence is: list_brands (or create_brand from a website URL), start_brand_extraction, poll get_extraction_status until complete, then generate_content, then list_generations for the results. generate_content spends the user's credits and cannot be undone. Check get_credit_balance first, confirm with the user, and if a call fails check list_generations before retrying — a blind retry can start a second paid batch. Every tool needs the user's own API key as a bearer token. 0layers does not publish or schedule posts; it produces content the user posts themselves.
Known tools 7
start_brand_extractionLearn a brand from its website: logo, colours, typography, voice, and business context.
Inferred read-onlylist_generationsList completed content for a brand, with download URLs for images.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.0layers]
url = "https://0layers.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"0layers": {
"type": "http",
"url": "https://0layers.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: 0layers
Remote MCP URL: https://0layers.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"0layers": {
"url": "https://0layers.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"0layers": {
"type": "http",
"url": "https://0layers.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "0layers",
"transport": "streamable-http",
"url": "https://0layers.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://0layers.com/.well-known/mcp
MCP server metadata
- Name
- 0layers
- Version
- 1.0.0
0layers turns a business website into on-brand social media content. The usual sequence is: list_brands (or create_brand from a website URL), start_brand_extraction, poll get_extraction_status until complete, then generate_content, then list_generations for the results. generate_content spends the user's credits and cannot be undone. Check get_credit_balance first, confirm with the user, and if a call fails check list_generations before retrying — a blind retry can start a second paid batch. Every tool needs the user's own API key as a bearer token. 0layers does not publish or schedule posts; it produces content the user posts themselves.
Known tools 7
start_brand_extractionLearn a brand from its website: logo, colours, typography, voice, and business context.
Inferred read-onlylist_generationsList completed content for a brand, with download URLs for images.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.0layers]
url = "https://0layers.com/.well-known/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"0layers": {
"type": "http",
"url": "https://0layers.com/.well-known/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: 0layers
Remote MCP URL: https://0layers.com/.well-known/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"0layers": {
"url": "https://0layers.com/.well-known/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"0layers": {
"type": "http",
"url": "https://0layers.com/.well-known/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "0layers",
"transport": "streamable-http",
"url": "https://0layers.com/.well-known/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 3
https://0layers.com/api/mcp/docs
MCP server metadata
- Name
- 0layers-docs
- Version
- 1.0.0
Read-only access to 0layers documentation. No credential is required. Use search_documentation when you do not know which document answers a question, list_documents to see what exists, and read_document to pull one in full. To take actions rather than answer questions — creating brands, generating content — use the 0layers product MCP server, which needs the user's API key.
Known tools 3
list_documentsList every 0layers document available to read, with a summary of each.
Inferred read-onlysearch_documentationFind which documents mention a term, with the surrounding lines.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.0layers-docs]
url = "https://0layers.com/api/mcp/docs"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"0layers-docs": {
"type": "http",
"url": "https://0layers.com/api/mcp/docs"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: 0layers-docs
Remote MCP URL: https://0layers.com/api/mcp/docs
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"0layers-docs": {
"url": "https://0layers.com/api/mcp/docs"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"0layers-docs": {
"type": "http",
"url": "https://0layers.com/api/mcp/docs"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "0layers-docs",
"transport": "streamable-http",
"url": "https://0layers.com/api/mcp/docs"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 4
https://0layers.com
MCP server metadata
- Name
- WebMCP
Known tools 1
start_0layers_brand_feedStart generating on-brand social media content from a business website. Provide the public website URL.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.webmcp]
url = "https://0layers.com"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"webmcp": {
"type": "http",
"url": "https://0layers.com"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: webmcp
Remote MCP URL: https://0layers.com
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"webmcp": {
"url": "https://0layers.com"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"webmcp": {
"type": "http",
"url": "https://0layers.com"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "webmcp",
"transport": "streamable-http",
"url": "https://0layers.com"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.