threads-mcp
If you are the rightful owner of threads-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
threads-mcp is a TypeScript-based Node MCP Server designed to create and post content to Threads, a social media platform by Meta.
threads-mcp
This project is a TypeScript-based Node MCP (Model Context Protocol) Server that would create post to Threads (a social media platform by Meta).
The goal of this project is to have the LLM generate a complete social media postβsomething ready to publish on Threads alongside the images. So the MCP server handled both retrieving relevant visual content and orchestrating the modelβs output into something directly usable. It turned a simple query like βcatsβ into a polished post with supporting visuals, all through a coordinated flow.
Project Structure
threads-mcp
βββ src
β βββ index.ts # Entry point
β βββ stock-photos.ts # Unsplash http client
β βββ threads-api.ts # Threads Api HTTP Client
β βββ threads-server.ts # Threads MCP Server
β βββ types.ts # Type definitions
βββ package.json # NPM package configuration
βββ tsconfig.json # TypeScript configuration
βββ README.md # Project documentation
Quick Start
Prerequisites
- Obtain the API Key from Unsplash
- Create an app on Meta Developer platform https://developers.facebook.com/apps
- Choose Access The Threads API as use case
- On main dashboard, click Access The Threads API > Settings > Enter Redirect Callback URLS
- Obtain these keys : Threads App ID , Threads App secret , Redirect Callback URL and save them in the env section of threads-dev in the config file :
**Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Clone the repository:
git clone https://github.com/tttn13/threads-mcp
cd threads-mcp
- Install dependencies:
npm install
- Build:
npm run build
- Run:
npm start
-
Create a Meta Developer account and get your keys
-
Add this configuration to your Claude Desktop config file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"threads-dev": {
"command": "node",
"args": [
"/Users/path/to/project/build/index.js"
],
"env": {
"HOST": "https://graph.threads.net",
"APP_ID": "threads_app_id",
"APP_SECRET": "threads_app_secret",
"REDIRECT_URI": "public_url",
"INITIAL_USER_ID": "threads_user_id",
"UNSPLASH_ACCESS_KEY":"access_key",
"PORT": "3000",
}
},
}
- Restart Claude Desktop
That's it, the tool is officially connected to Claude Desktop! You still need to go through an authorization process to obtain the long lived token but dw, Claude will walk you through it.
post_thread
: Post a new thread and fetch stock photos from Unsplash
Example Usage
Try asking Claude:
- "Can you post a thread about cats with photos"
Development
If you want to contribute or run from source:
- Clone the repository:
git clone https://github.com/tttn13/threads-mcp
cd threads-mcp
- Install dependencies:
npm install
- Build:
npm run build
- Run:
npm start
License
This project is licensed under the MIT License. See the LICENSE file for more details.