https://github.com/tejedamiguel6/mcp-server-contenful
mcp server that queries my contentful space.
https://github.com/tejedamiguel6/mcp-server-contenful
Last synced: 2 months ago
JSON representation
mcp server that queries my contentful space.
- Host: GitHub
- URL: https://github.com/tejedamiguel6/mcp-server-contenful
- Owner: tejedamiguel6
- License: mit
- Created: 2025-03-17T04:45:18.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-05-08T01:26:31.000Z (5 months ago)
- Last Synced: 2025-06-17T13:18:01.918Z (4 months ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://mseep.ai/app/tejedamiguel6-mcp-server-contenful)
# Contentful MCP Server
A Model Context Protocol (MCP) server that allows Claude to interact with Contentful CMS data directly. This integration enables Claude to fetch content types and entries from your Contentful space.
[](https://mseep.ai/app/5fafc920-b065-43ab-946a-bbc57aadebe0)## Features
- Fetch all content types from your Contentful space
- Retrieve entries for specific content types
- Structured responses for easy consumption by AI assistants## Prerequisites
- Node.js (v16 or higher)
- A Contentful account with API keys
- Claude Desktop (to use the MCP server with Claude)## Installation
1. Clone this repository:
```bash
git clone https://github.com/yourusername/contentful-mcp-server.git
cd contentful-mcp-server2.Install dependencies:
npm installCreate a .env file in the root directory with your Contentful credentials:
4. CONTENTFUL_SPACE_ID=your_space_id
CONTENTFUL_ACCESS_TOKEN=your_access_token
CONTENTFUL_ENVIRONMENT=develop
CONTENTFUL_PREVIEW_ACCESS_TOKEN=your_preview_tokennpm run build
Or configure a build script in your package.json:
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
}##Configuration for Claude Desktop
```
{
"mcpServers": {
"contentful": {
"command": "node",
"args": [
"/absolute/path/to/contentful-mcp-server/dist/index.js"
]
}
}
}
```