The CMS-less CMS
Simple API for developers and Agents to provide content for sites and apps without needing a CMS backend (like Wordpress) or a bespoke admin/auth build just for content editing. 
    Simply replace each URL with pullnote.com/your-path for content in MD or HTML, or use our npm package:
npm install @pullnote/clientimport { PullnoteClient } from '@pullnote/client';
const pn = new PullnoteClient(PULLNOTE_KEY );
// Store
await pn.add('/about', {
  title: 'About',
  content: 'About the **Pullnote** Headless Content API'
});
// Retrieve
var content = await pn.getMd('/about'); // For the raw Markdown
var content = await pn.getHtml('/about'); // If you prefer to directly render as HTML
See API reference for all options or go to the console to create / edit content.
CMSes traditionally cannot be driven by AI, but Pullnote can. Pass your LLM a link to our llms.txt file and it will be able to create, edit and retrieve content on your behalf.
Cursor / Claude can integrate even further using MCP.