Simple, API-first Headless CMS
Instant CMS database backend to store and retrieve content via npm package or REST API. Eliminates the need to build a content backend for each project by offering centralized content management with an optional human editor at pullnote.com.Deploy whole dynamic websites or blog areas with a couple of lines of code that pass the URL on to Pullnote for content.
npm install @pullnote/client
import { 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.getHtml('/about');
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.