Skip to main content
Glama

Ghost MCP Server

by mtane0412

고스트 MCP 서버

Ghost Admin API와 통합되는 모델 컨텍스트 프로토콜(MCP) 서버입니다. 이 서버를 통해 게시물 관리, 페이지 관리, 회원 관리 등 Ghost CMS 기능에 프로그래밍 방식으로 접근할 수 있습니다.

특징

  • 게시물 관리(작성, 읽기, 업데이트, 삭제, 검색)
  • 페이지 관리(생성, 읽기, 업데이트, 삭제)
  • 태그 관리
  • 저자 관리
  • 회원 관리(생성, 읽기, 업데이트, 삭제, 검색)
  • 이미지 업로드 지원

필수 조건

  • Node.js(v18 이상 권장)
  • Ghost CMS 인스턴스
  • Ghost Admin API 키

설치

npm을 사용하여 패키지를 설치하세요:

지엑스피1

구성

  1. Ghost Admin 대시보드의 설정 > 통합에서 새 사용자 정의 통합을 만듭니다.
  2. 다음 환경 변수를 설정하세요.
# macOS/Linux export GHOST_URL="https://your-ghost-blog.com" export GHOST_ADMIN_API_KEY="your_admin_api_key" # Windows (PowerShell) $env:GHOST_URL="https://your-ghost-blog.com" $env:GHOST_ADMIN_API_KEY="your_admin_api_key"

또는 .env 파일을 만들 수 있습니다.

GHOST_URL=https://your-ghost-blog.com GHOST_ADMIN_API_KEY=your_admin_api_key

용법

설치 후 다음을 사용하여 서버를 시작합니다.

npx @mtane0412/ghost-mcp-server

사용 가능한 도구

게시물 받기

블로그 게시물 목록을 검색합니다.

입력:

{ "limit": "number", // Optional: Number of posts to retrieve (1-100, default: 10) "page": "number" // Optional: Page number (default: 1) }

get_post

ID로 특정 게시물을 검색합니다.

입력:

{ "id": "string" // Required: Post ID }

게시물 검색

게시물 검색.

입력:

{ "query": "string", // Required: Search query "limit": "number" // Optional: Number of posts to retrieve (1-100, default: 10) }

게시물 생성

새로운 게시물을 만듭니다.

입력:

{ "title": "string", // Required: Post title "html": "string", // Optional: HTML content "lexical": "string", // Optional: Lexical content "status": "string", // Optional: Post status (published/draft/scheduled) "visibility": "string" // Optional: Visibility level (public/members/paid/tiers) }

업데이트_게시물

기존 게시물을 업데이트합니다.

입력:

{ "id": "string", // Required: Post ID "title": "string", // Optional: Post title "html": "string", // Optional: HTML content "lexical": "string", // Optional: Lexical content "status": "string" // Optional: Post status }

삭제_게시물

게시물을 삭제합니다.

입력:

{ "id": "string" // Required: Post ID }

get_pages

페이지 목록을 검색합니다.

입력:

{ "limit": "number", // Optional: Number of pages to retrieve (1-100, default: 10) "page": "number", // Optional: Page number (default: 1) "order": "string", // Optional: Sort order "formats": ["string"], // Optional: Content formats (html/mobiledoc/lexical) "include": ["string"] // Optional: Related data to include (authors/tags) }

멤버를 얻으세요

회원 목록을 검색합니다.

입력:

{ "limit": "number", // Optional: Number of members to retrieve (1-100, default: 10) "page": "number", // Optional: Page number (default: 1) "order": "string", // Optional: Sort order "include": ["string"] // Optional: Related data to include (labels/newsletters) }

검색_멤버

회원 검색.

입력:

{ "query": "string", // Required: Search query "limit": "number", // Optional: Number of members to retrieve (1-100, default: 10) "include": ["string"] // Optional: Related data to include (labels/newsletters) }

업로드_이미지

이미지를 업로드합니다.

입력:

{ "file": "string", // Required: Base64 encoded image data "purpose": "string" // Optional: Image purpose (image/profile_image/icon) }

디버깅

MCP 서버는 stdio를 통해 통신하므로 디버깅이 어려울 수 있습니다. 패키지 스크립트로 제공되는 MCP Inspector를 사용하는 것이 좋습니다.

npm run inspect

검사기는 브라우저에서 디버깅 도구에 액세스할 수 있는 URL을 제공합니다.

특허

MIT 라이센스

-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Ghost Admin API와 통합하여 게시물, 페이지, 태그, 작성자, 회원, 이미지 업로드 등 Ghost CMS 기능을 프로그래밍 방식으로 관리하고 효율적인 콘텐츠 관리 기능을 제공합니다.

  1. 특징
    1. 필수 조건
      1. 설치
        1. 구성
          1. 용법
            1. 사용 가능한 도구
              1. 게시물 받기
              2. get\_post
              3. 게시물 검색
              4. 게시물 생성
              5. 업데이트\_게시물
              6. 삭제\_게시물
              7. get\_pages
              8. 멤버를 얻으세요
              9. 검색\_멤버
              10. 업로드\_이미지
              11. 디버깅
            2. 특허

              Related MCP Servers

              • -
                security
                A
                license
                -
                quality
                Enables interaction with Ghost CMS via LLM interfaces, providing secure access through JWT authentication for managing posts, users, and newsletters with detailed output and error handling.
                Last updated -
                41
                137
                38
                TypeScript
                MIT License
                • Linux
              • -
                security
                A
                license
                -
                quality
                Enables management of Payload CMS projects through natural language commands, allowing developers to create, configure, and deploy content models with conversational AI.
                Last updated -
                82
                21
                MIT License
                • Linux
                • Apple
              • -
                security
                F
                license
                -
                quality
                Model Context Protocol (MCP) integration for managing content in the DevHub CMS system (blog posts, content, location administration)
                Last updated -
                Python
                • Linux
                • Apple
              • -
                security
                A
                license
                -
                quality
                An implementation of the Model Context Protocol Server that allows AI clients like Cursor or Claude Desktop to manage Ghost CMS blogs by exposing capabilities like creating posts, adding tags, and uploading images.
                Last updated -
                2
                JavaScript
                MIT License

              View all related MCP servers

              MCP directory API

              We provide all the information about MCP servers via our MCP API.

              curl -X GET 'https://glama.ai/api/mcp/v1/servers/mtane0412/ghost-mcp-server'

              If you have feedback or need assistance with the MCP directory API, please join our Discord server