Server data from the Official MCP Registry
MCP server for NomaCMS. Manage collections, fields, content, assets, and webhooks via AI agents.
MCP server for NomaCMS. Manage collections, fields, content, assets, and webhooks via AI agents.
Valid MCP server (4 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
5 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: NOMA_API_KEY
Environment variable: NOMA_PROJECT_ID
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-nomacms-nomacms-mcp-server": {
"env": {
"NOMA_API_KEY": "your-noma-api-key-here",
"NOMA_PROJECT_ID": "your-noma-project-id-here"
},
"args": [
"-y",
"@nomacms/mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
An MCP (Model Context Protocol) server that connects AI agents like Cursor and Claude Code to your NomaCMS project. Manage collections, fields, content entries, assets, and webhooks programmatically through natural language.
NOMA_API_KEY: API key from User settings → API keys — see API key abilities.NOMA_PROJECT_ID: Your project's UUID — you can find it on the project home page or under Project settings → API AccessAdd this to your Cursor MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"nomacms": {
"command": "npx",
"args": ["-y", "@nomacms/mcp-server"],
"env": {
"NOMA_API_KEY": "your-api-key",
"NOMA_PROJECT_ID": "your-project-uuid"
}
}
}
}
Add the MCP server using the Claude Code CLI:
claude mcp add nomacms \
-e NOMA_API_KEY=your-api-key \
-e NOMA_PROJECT_ID=your-project-uuid \
-- npx -y @nomacms/mcp-server
get_project — Get project information (default_locale, locales, etc.)add_project_locale — Add a locale code to the project (requires admin)set_default_project_locale — Set the default locale (requires admin)Removing locales is intentionally not exposed here (use Project settings → Localization in the NomaCMS dashboard if you must remove a locale).
list_collections — List all collectionsget_collection — Get a collection with its full field schemacreate_collection — Create a collection (with optional batch field creation)update_collection — Update a collection's name and slugreorder_collections — Reorder collectionscreate_field — Add a field to a collectionupdate_field — Update a fieldreorder_fields — Reorder fields within a collectionlist_entries — List entries with advanced filtering (where with 13 operators, OR groups, relation filtering), sorting, pagination, count, and firstget_entry — Get a single content entrycreate_entry — Create a content entryupdate_entry — Update a content entrypatch_entry — Partially update an entry (HTTP PATCH; merge only the fields you send)publish_entry — Publish the draft as a new immutable version (update)unpublish_entry — Clear the live published pointer; versions retained (update)delete_entry — Soft-delete a content entry (moves to trash)bulk_create_entries — Create multiple entries atomicallybulk_update_entries — Update multiple entries atomically by UUIDbulk_delete_entries — Delete multiple entries atomically by UUIDlink_entry_translation — Link two entries (different locales) into the same translation group (POST …/link-translation; requires update ability)list_entry_versions — List version history for an entryget_entry_version — Fetch one version by number (includes snapshot payload)revert_entry_version — Restore draft from a prior snapshot and publish (update)update_entry_version_label — Edit label/description on a version; snapshot unchanged (update)Content API shape: Each entry has uuid, locale, published_at, and fields (custom field values). Richtext values are markdown strings on write; on read they are either raw markdown or rendered HTML depending on the field’s editor.outputFormat (markdown vs html). Relation fields return nested entry objects (or arrays for one-to-many) on read; on write send only the related entry’s UUID or numeric id (never the full nested object from a previous get_entry). get_entry supports translation_locale, exclude, timestamps, and state query parameters.
Asset URLs: The API returns url, thumbnail_url, and original_url as stable links (optional ?variant=thumbnail or ?variant=original).
list_assets — List assets with paginationget_asset — Get an asset by UUID or filenameupload_asset — Upload a file as an assetbulk_upload_assets — Upload multiple files atomicallybulk_update_asset_metadata — Update metadata for multiple assets atomicallydelete_asset — Delete an assetlist_webhooks — List all webhooks for the projectget_webhook — Get a webhook by UUIDcreate_webhook — Create a webhook for content and auth events (name, url, events, sources; optional description, secret, payload, status, collection_ids)update_webhook — Update a webhook by UUID (same fields as create)delete_webhook — Delete a webhook by UUIDlist_webhook_logs — List delivery logs for a webhook (uuid; optional paginate, page)The server exposes three reference resources that AI agents can read for context:
nomacms://field-types) — Complete reference of all 16 field types, their options, validations, and common patterns.nomacms://collections-guide) — Guide for working with collections, singletons, reserved slugs, and best practices.nomacms://query-reference) — Full documentation for content queries: where filters with 13 operators, OR groups, relation filtering, sorting, pagination, and examples.Your API key needs the appropriate abilities for the tools you want to use:
| Ability | Tools |
|---|---|
read | list/get collections, entries, assets, webhooks; webhook logs |
create | create entries, upload assets, create webhooks |
update | update entries, link_entry_translation, update asset metadata, update webhooks |
delete | delete entries, delete assets, delete webhooks |
admin | create/update/reorder collections and fields; add/set default project locales (MCP does not expose locale removal) |
Create the key in the NomaCMS dashboard under User settings → API keys. Copy the Project ID from the project home page or Project settings → API Access when you configure this server.
Each MCP entry connects to a single NomaCMS project. To work with multiple projects, add separate entries in your MCP config:
{
"mcpServers": {
"nomacms-blog": {
"command": "npx",
"args": ["-y", "@nomacms/mcp-server"],
"env": {
"NOMA_API_KEY": "blog-project-api-key",
"NOMA_PROJECT_ID": "blog-project-uuid"
}
},
"nomacms-store": {
"command": "npx",
"args": ["-y", "@nomacms/mcp-server"],
"env": {
"NOMA_API_KEY": "store-project-api-key",
"NOMA_PROJECT_ID": "store-project-uuid"
}
}
}
}
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.