MCP ExplorerExplorer

Mcp Threads Server

@imakerjunon 10 months ago
2 MIT
FreeCommunity
AI Systems
MCP Threads Server for reading/writing posts using Threads API with TypeScript.

Overview

What is Mcp Threads Server

mcp-threads-server is a server implementation that utilizes the Threads API for reading and writing posts, developed using TypeScript. It provides a structured way to interact with the Threads platform.

Use cases

Use cases for mcp-threads-server include building a social media dashboard, creating a content publishing tool, or developing a custom application that interacts with Threads for user engagement.

How to use

To use mcp-threads-server, clone the repository, install dependencies with ‘npm install’, set up your environment variables in a .env file, and run the server using ‘npm start’ or in development mode with ‘npm run dev’.

Key features

Key features include access token-based authentication, support for text, image, and video posts, and type safety provided by TypeScript.

Where to use

mcp-threads-server can be used in applications that require integration with the Threads API, such as social media platforms, content management systems, or any service that needs to manage posts and user interactions.

Content

MCP Threads API 서버

Threads API를 활용한 서버 구현입니다.

기능

  • Threads API를 사용하여 게시물 읽기/쓰기
  • 액세스 토큰 기반 인증
  • 텍스트, 이미지, 비디오 게시물 지원
  • TypeScript를 사용한 타입 안전성

설치

npm install

환경 변수 설정

.env 파일을 생성하고 다음 내용을 설정하세요:

# 서버 설정
PORT=3000
NODE_ENV=development

# Threads API 설정
THREADS_ACCESS_TOKEN=your_access_token_here

실행

개발 모드로 실행:

npm run dev

빌드 후 실행:

npm run build
npm start

API 엔드포인트

프로필

  • GET /api/profile/me - 내 프로필 정보 가져오기
  • GET /api/profile/:username - 사용자 프로필 검색하기

스레드

  • GET /api/thread/:threadId - 스레드 정보 가져오기
  • POST /api/thread/create - 스레드 컨테이너 생성하기
  • POST /api/thread/publish - 스레드 게시하기

테스트

전체 테스트 실행

npm test

테스트 커버리지 확인

npm run test:coverage

개발 중 테스트 자동 실행

npm run test:watch

테스트 구성

  • 단위 테스트: src/__tests__ 디렉토리에 위치
  • 통합 테스트: src/__tests__/integration 디렉토리에 위치

프로젝트 구조

src/
├── __tests__/       # 테스트 코드
├── bin/            # CLI 도구
├── config/         # 설정 관련 코드
├── controllers/    # HTTP 요청 처리기
├── middlewares/    # 미들웨어 (인증 등)
├── routes/         # API 라우트
├── services/       # 비즈니스 로직
├── types/          # 타입 정의
└── utils/          # 유틸리티 함수

로컬 테스트

프로젝트를 로컬에서 테스트하려면:

  1. 저장소를 클론합니다:

    git clone https://github.com/yourusername/mcp-threads-server.git
    cd mcp-threads-server
    
  2. 의존성을 설치합니다:

    npm install
    
  3. .env 파일을 생성하고 인증 정보를 입력합니다:

    cp .env.example .env
    # .env 파일을 편집하여 Access Token 추가
    
  4. 서버를 실행합니다:

    npm start
    

Claude Desktop 설정

claude_desktop_config.json 파일에 다음과 같이 추가합니다:

{
  "mcpServers": {
    "threads": {
      "command": "npx",
      "args": [
        "-y",
        "@makerkim/mcp-threads-server",
        "--token",
        "your_access_token"
      ]
    }
  }
}

참고 자료

라이선스

ISC

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers