npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@upassist/neos-mcp

v1.0.0

Published

MCP server for Neos CMS — connects AI assistants to any UpAssist.Neos.Mcp bridge

Readme

@upassist/neos-mcp

MCP server that connects AI assistants to Neos CMS. Works with Claude Code, Cursor, and any other tool that supports the Model Context Protocol.

This is the client-side component. It runs locally on your machine and translates MCP tool calls into HTTP requests to the UpAssist.Neos.Mcp bridge running inside your Neos installation.

Requirements

Installation

Via npm (recommended):

npm install -g @upassist/neos-mcp

Or clone from source:

git clone https://github.com/UpAssist/neos-mcp-client.git ~/Tools/neos-mcp-client
cd ~/Tools/neos-mcp-client
npm install
npm run build

Configuration

The MCP server connects to your Neos instance using two environment variables:

| Variable | Description | Example | | --- | --- | --- | | NEOS_MCP_URL | Base URL of the Neos site | http://localhost:8081 | | NEOS_MCP_TOKEN | Bearer token (must match NEOS_MCP_BRIDGE_TOKEN in Neos .env) | a3f1c9... |

Generating a token

Pick a secure shared secret. The same token goes in two places:

# Generate a random token
openssl rand -hex 32
  1. Neos side — add to your Neos .env file as NEOS_MCP_BRIDGE_TOKEN
  2. MCP client side — add to your editor config as NEOS_MCP_TOKEN (see below)

Claude Code

Per project (recommended) — add a .mcp.json to your Neos project root:

{
  "mcpServers": {
    "neos-local": {
      "command": "neos-mcp",
      "env": {
        "NEOS_MCP_URL": "http://localhost:8081",
        "NEOS_MCP_TOKEN": "your-token"
      }
    }
  }
}

Important: Add .mcp.json to .gitignore — it contains your token.

You can define multiple environments in the same file (e.g. local + production):

{
  "mcpServers": {
    "neos-local": {
      "command": "neos-mcp",
      "env": {
        "NEOS_MCP_URL": "http://localhost:8081",
        "NEOS_MCP_TOKEN": "your-local-token"
      }
    },
    "neos-production": {
      "command": "neos-mcp",
      "env": {
        "NEOS_MCP_URL": "https://www.example.com",
        "NEOS_MCP_TOKEN": "your-production-token"
      }
    }
  }
}

Global (all projects) — add the same mcpServers block to ~/.claude.json.

Cursor

Add to Cursor's MCP settings (Settings > MCP Servers):

{
  "neos-mcp": {
    "command": "neos-mcp",
    "env": {
      "NEOS_MCP_URL": "http://localhost:8081",
      "NEOS_MCP_TOKEN": "your-token"
    }
  }
}

Available tools

Once connected, your AI assistant can use these tools:

Reading

| Tool | Description | | --- | --- | | neos_get_site_context | Get site structure, node types, and page tree. Call this first. | | neos_list_pages | List all pages in a workspace | | neos_get_page_content | Get all content nodes on a specific page | | neos_get_document_properties | Get page-level properties (title, SEO, etc.) | | neos_list_node_types | List available node types and their properties |

Writing

| Tool | Description | | --- | --- | | neos_setup_workspace | Create the MCP workspace (auto-created on first write) | | neos_update_node_property | Update a property on an existing node | | neos_create_content_node | Create a new content element inside a page | | neos_create_document_node | Create a new page | | neos_move_node | Move or reorder a node | | neos_delete_node | Remove a node |

Media

| Tool | Description | | --- | --- | | neos_list_assets | Browse images and files from the Media Manager | | neos_list_asset_tags | List available asset tags |

Review and publish

| Tool | Description | | --- | --- | | neos_get_preview_url | Generate a 24-hour preview link (no Neos login needed) | | neos_list_pending_changes | See what has been changed | | neos_publish_changes | Publish all changes to live |

Entity management

If the Neos installation exposes custom Doctrine entities (see bridge documentation), these tools are also available:

| Tool | Description | | --- | --- | | neos_entity_discover | List all exposed entities with their schemas | | neos_entity_list | List/filter entities | | neos_entity_show | Get a single entity by UUID | | neos_entity_create | Create a new entity | | neos_entity_update | Update entity properties | | neos_entity_delete | Delete an entity | | neos_entity_action | Run a named action (publish, archive, etc.) |

How it works

AI Assistant (Claude Code, Cursor, etc.)
    |
    |  MCP protocol (stdio)
    |
@upassist/neos-mcp           <-- this package
    |
    |  HTTP + Bearer token
    |
UpAssist.Neos.Mcp bridge (Neos CMS)
    |
    |  ContentRepository API
    |
Neos CMS database (mcp workspace -> live)
  1. Your AI assistant communicates with this MCP server via stdio
  2. Each tool call is translated into an HTTP request to the Neos bridge
  3. All write operations go to a staging workspace (not directly to live)
  4. Changes can be previewed via generated URLs before publishing
  5. Publishing requires an explicit call — the AI never auto-publishes

Development

# Run in dev mode (hot reload via tsx)
npm run dev

# Type check
npm run typecheck

# Build for production
npm run build

# Run built version
npm start

Adding a new tool

  1. Create a file in src/tools/ (e.g. myNewTool.ts)
  2. Export a register function that calls server.tool() with name, description, Zod schema, and handler
  3. Use callBridge() to make the HTTP request to the Neos bridge
  4. Import and call the register function in src/server.ts
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { z } from 'zod';
import { callBridge } from '../bridge.js';

export function registerMyNewTool(server: McpServer): void {
  server.tool(
    'neos_my_new_tool',
    'Description of what this tool does',
    {
      some_param: z.string().describe('What this parameter does'),
    },
    async ({ some_param }) => {
      const data = await callBridge('myNewAction', 'POST', { someParam: some_param });
      return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };
    }
  );
}

License

MIT