Siteleaf MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Siteleaf MCP or direct API to list sites, manage pages, update posts, and publish static content through natural language.

Siteleaf logoSiteleaf
Api KeyBasic

Siteleaf is a friendly CMS for static sites powered by Jekyll and GitHub sync. Use it to manage content in a clean editor while keeping fast, versioned static sites.

35 Tools

Try Siteleaf now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Siteleaf
Try asking
TOOLS

Supported Tools

Every Siteleaf action and event your agent gets out of the box.

Cancel Job

Cancel an active Siteleaf job by job ID.

Create Collection

Create a content collection in a Siteleaf site.

Create Collection File

Upload one static file to a Siteleaf collection identified by its path.

Create Document

Create a document in a Siteleaf collection with content, taxonomy, metadata, and visibility.

Create Page

Create a page in a Siteleaf site.

Create Role

Grant a Siteleaf user an admin, publisher, or writer role on a site.

Create Site

Create a Siteleaf site with its domain, timezone, metadata, and defaults.

Delete Collection

Permanently delete a Siteleaf collection by site ID and collection path.

Delete Document

Permanently delete a Siteleaf document by ID.

Delete Page

Permanently delete a Siteleaf page by ID.

Delete Role

Delete a Siteleaf role by ID, removing the user's access to its site.

Delete Site

Permanently delete a Siteleaf site by ID.

Delete Source File

Permanently delete one raw source file from a Siteleaf site.

Get Collection

Get a collection by site ID and collection path.

Get Current User

Return the Siteleaf user authenticated by the connected API key.

Get Document

Get a Siteleaf document by ID.

Get Job

Get the complete buffered status stream for a Siteleaf job, including all status events and the latest status details.

Get Page

Get a Siteleaf page by ID.

Get Role

Get a Siteleaf site-access role by ID.

Get Site

Get one Siteleaf site by ID, including its settings and current or most recent preview, publish, and synchronization job states.

Get Site Taxonomy

Return the unique post tags and categories used by a Siteleaf site.

Get Source

Get raw source-file metadata or list a source directory for a Siteleaf site.

List Collection Files

Search and list static files in a Siteleaf collection with sorting and agent-controlled pagination.

List Collections

List content collections in a Siteleaf site with agent-controlled pagination.

List Documents

Search and list documents in a Siteleaf collection with visibility, extension, sorting, and pagination filters.

List Pages

Search and list pages in a Siteleaf site with visibility, extension, sorting, and pagination filters.

List Sites

List sites accessible to the connected Siteleaf account, with optional sorting and agent-controlled pagination.

List Site Users

List users who have access to a Siteleaf site with agent-controlled pagination.

Publish Site

Start an asynchronous compile-and-publish job for a Siteleaf site and return its job ID.

Update Collection

Update at least one of a collection's title, path, permalink, output behavior, or metadata.

Update Document

Update at least one of a document's content, path, taxonomy, visibility, metadata, or date.

Update Page

Update at least one of a page's content, path, visibility, metadata, or publication date.

Update Role

Change an existing Siteleaf role to admin, publisher, or writer.

Update Site

Update at least one of a site's title, domain, timezone, metadata, or Jekyll content defaults.

Create or Replace Source File

Create or replace one raw source file in a Siteleaf site.

SETUP GUIDE

Connect Siteleaf MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Siteleaf
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'List all sites in my Siteleaf account and summarize their names.'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Siteleaf API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Siteleaf Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all sites in my Siteleaf account and summarize their names.'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Siteleaf actions with your Agent

Why Use Composio?

AI Native Siteleaf Integration

  • Supports both Siteleaf MCP and direct API based integrations
  • Structured, LLM-friendly schemas help agents manage sites, pages, posts, and content with fewer mistakes
  • Rich coverage for reading, writing, and querying Siteleaf CMS data without custom integration glue

Managed Auth

  • Secure handling for Siteleaf API key and Basic Auth credentials
  • Central place to manage, scope, and revoke Siteleaf access for each user or environment
  • No hard-coded CMS credentials inside your agent code, prompts, or deployment scripts

Agent Optimized Design

  • Siteleaf tools are shaped so language models can understand what to call and when
  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs show what content action ran, when it ran, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC controls which agents and users can access Siteleaf
  • Scoped, least privilege access to Siteleaf resources like sites, pages, and posts
  • Full audit trail of agent actions so teams can review content changes before they become a problem
FAQ

Frequently asked questions

Yes, Siteleaf requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Siteleaf.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Siteleaf tool your agent needs.Free to start.

Start building