Contentful MCP Remote Server

Contentful MCP Remote Server

Exposes Contentful MCP tools as a remote HTTP endpoint, allowing Claude Desktop to interact with Contentful content management functionality via an Express.js server instead of running tools locally.

Category
Visit Server

README

Contentful MCP Remote Server

This repository hosts an Express.js server designed to expose the Contentful MCP tools as a remote endpoint. It allows the Contentful MCP Desktop application to connect to and utilize the mcp-tools functionality via an HTTP API, rather than running them locally.

šŸš€ Getting Started (Remote Server)

These instructions will get your remote MCP server up and running.

Prerequisites

  • Node.js (LTS version recommended)

  • npm or Yarn

Installation

  1. Clone the repository:

    git clone [your-repository-url]
    cd [your-repository-name]
    
  2. Install dependencies:

    npm install
    # or
    yarn install
    

Running the Server

To start the Express.js server:

npm start
# or
yarn start

The server will typically run on http://localhost:3000 (or another port if configured) and expose the MCP endpoint at /mcp. Ensure this server is accessible from where you're running the Contentful MCP Desktop application (e.g., if deploying to a cloud service, make sure the URL is public).

šŸ”Œ Connecting to the Contentful MCP Desktop App

To connect your Contentful MCP Desktop application to this remote server, you'll need to configure it to use mcp-remote globally and then point it to your server's endpoint.

1. Install mcp-remote globally

First, ensure you have mcp-remote installed globally on your machine. This command-line tool acts as a bridge between the desktop app and your remote server.

npm install -g mcp-remote
# or
yarn global add mcp-remote

2. Configure Claude Desktop for Remote Server

Open your Claude Desktop application's configuration file. This file is usually located in your user's application data directory. Add the following JSON snippet to the mcpServers section:

{
  "mcpServers": {
    "contentful_mcp_server": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://example.com/mcp"
      ]
    }
  }
}

Important: Replace https://example.com/mcp with the actual URL where your Express.js server's /mcp endpoint is accessible.

After saving the configuration, restart the Claude Desktop application. You should now see "contentful_mcp_server" available as an option for running MCP commands.

3. Verify MCP Connection (Optional)

You can verify that your MCP server is correctly exposed and accessible by using the @modelcontextprotocol/inspector tool.

npx @modelcontextprotocol/inspector

This command will attempt to connect to the configured MCP servers and report their status, helping you confirm that your remote or local server is properly recognized.

šŸ’» Running MCP Tools Locally (Alternative Setup)

If you prefer to run the Contentful MCP tools directly on your local machine without the remote server, you can follow these instructions.

1. Clone and Run the Base Repository

  1. Clone the original Contentful MCP Server repository:

    git clone https://github.com/applydigital/contentful-express-mcp-server
    cd contentful-express-mcp-server
    
  2. Install dependencies:

    npm install
    # or
    yarn install
    
  3. Start the local MCP server:

    npm dev
    # or
    yarn dev
    

    This will typically start the MCP server on http://localhost:3000.

2. Configure Claude Desktop for Local Server

Open your Claude Desktop application's configuration file. Add the following JSON snippet to the mcpServers section to connect to your locally running instance:

{
  "mcpServers": {
    "contentful_mcp_local": {
      "command": "npx",
      "args": [
        "mcp-server",
        "http://localhost:3000"
      ]
    }
  }
}

After saving the configuration, restart the Claude Desktop application. You should now see "contentful_mcp_local" available as an option for running MCP commands, which will execute directly against your local mcp-server instance.

šŸ’” Considerations

  • Security: If deploying this server publicly, ensure you implement appropriate security measures (e.g., API keys, authentication, rate limiting) to protect your endpoint.

  • Scalability: For high-volume usage, consider deploying this server on a scalable platform (like Google Cloud Run, AWS Lambda, or similar serverless offerings) to handle concurrent requests efficiently.

  • Error Handling: Enhance the server's error handling to provide more informative responses in case of issues with mcp-tools execution.

  • Logging: Implement robust logging to monitor server activity and troubleshoot problems.

  • mcp-tools Dependency: This server assumes that the necessary mcp-tools are available and correctly configured within its environment. Ensure that the mcp-tools package is a dependency of this Express.js project.

  • Network Latency: Running MCP tools remotely introduces network latency. For very frequent or performance-critical operations, a local setup might still be preferable.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured