🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

ryterpro-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ryterpro-mcp

MCP server for the Ryter Pro API

pipPyPI
Version
0.1.0
Weekly downloads
398
Maintainers
1

Ryter Pro MCP Server

An MCP server that exposes the Ryter Pro text humanizer API as a tool for MCP-compatible clients.

Tools

humanize_text

Humanize or rewrite text with the Ryter Pro API.

Inputs:

  • text: Text to humanize.
  • mode: Optional humanizer mode supported by your Ryter Pro API.

ryterpro_api_info

Return basic API configuration and documentation links.

Installation

Requires Python 3.10 or later.

pip install ryterpro-mcp

Configuration

Set your Ryter Pro API key before running the server:

export RYTERPRO_API_KEY="your_api_key_here"

Optional environment variables:

export RYTERPRO_BASE_URL="https://api.ryter.pro"
export RYTERPRO_TIMEOUT="60"

Run

ryterpro-mcp

The server uses the MCP stdio transport by default.

MCP Client Example

{
  "mcpServers": {
    "ryterpro": {
      "command": "ryterpro-mcp",
      "env": {
        "RYTERPRO_API_KEY": "your_api_key_here"
      }
    }
  }
}

For local development from this repository:

{
  "mcpServers": {
    "ryterpro": {
      "command": "python3",
      "args": ["-m", "ryterpro_mcp.server"],
      "env": {
        "RYTERPRO_API_KEY": "your_api_key_here"
      }
    }
  }
}

License

MIT

Keywords

ryter pro

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts