mcp

supr-ai/mcp

3.2

If you are the rightful owner of 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.

A powerful Model Context Protocol (MCP) server for efficient article administration and management.

Tools
2
Resources
0
Prompts
0

sup.ai MCP Server

A powerful Model Context Protocol (MCP) server for efficient article administration and management.

Overview

The sup.ai MCP server provides a seamless interface for creating and updating articles through a chat-based interface. It integrates with various tools and services to enhance content management workflows.

Available Tools

ToolDescription
create-articleCreates a new article based on a specified topic
update-articleUpdates an existing article identified by its slug

Installation

1. Dependencies

Windsurf
node & npm
via homebrew for mac
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install node

2. Clone, install, and build sup.ai mcp project

mkdir supai
cd supai
git clone git@github.com:supr-ai/work.git
git clone git@github.com:supr-ai/mcp.git
cd mcp
npm install
npm build

Configuration

Add the following configuration to your chat client MCP server settings:

{
  "mcpServers": {
    "supai": {
      "command": "node",
      "args": ["/path/to/supai/mcp/build/index.js"],
      "disabled": false,
      "env": {
        "SUPAI_API_KEY": "****",
        "SUPAI_ENDPOINT": "https://sup.ai"
      }
    },
    "gsc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-gsc"
      ],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/google-search-console-mcp.json"
      }
    }
  }
}

Usage Examples

Create Article

This example demonstrates how to create a new article using the MCP server:

you: @supai create-article topic="Best practices for SEO optimization"

ai: Creating article on "Best practices for SEO optimization"...
   Article created successfully!
   URL: https://sup.ai/articles/best-practices-for-seo-optimization

Update Article

This example shows how to update an existing article:

you: @supai update-article slug="best-practices-for-seo-optimization" 

ai: Updating article "best-practices-for-seo-optimization"...
   Article updated successfully!
   URL: https://sup.ai/articles/best-practices-for-seo-optimization