@gpthuman/mcp-server 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Gpthuman MCP Server
1
+ # GPTHuman MCP Server
2
2
 
3
3
  A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server providing access to GPTHuman's API, the leading platform for transforming AI-generated text into natural, human-sounding content that successfully bypasses AI detectors. This allows any MCP-compatible client (Cursor, Claude Desktop, etc.) to call the humanizer tool natively.
4
4
 
@@ -7,7 +7,7 @@ The server is shipped as a single `humanize_text` tool that rewrites AI-generate
7
7
  ## Requirements
8
8
 
9
9
  - Node.js `>= 22.0.0`
10
- - A Gpthuman API key — get one at [gpthuman.ai](https://app.gpthuman.ai/api)
10
+ - A GPTHuman API key — get one at [GPTHuman.ai](https://app.gpthuman.ai/api)
11
11
 
12
12
  ## Configuration
13
13
 
@@ -15,7 +15,7 @@ The server reads a single environment variable:
15
15
 
16
16
  | Variable | Required | Description |
17
17
  | ------------------ | -------- | ---------------------------- |
18
- | `GPTHUMAN_API_KEY` | Yes | Your Gpthuman API key. |
18
+ | `GPTHUMAN_API_KEY` | Yes | Your GPTHuman API key. |
19
19
 
20
20
  ## Installation
21
21
 
@@ -126,15 +126,15 @@ Available scripts:
126
126
  src/
127
127
  stdio.ts Entry point — wires the server to the stdio transport.
128
128
  McpServerFactory.ts Builds the McpServer and registers tools.
129
- GptHumanAPI.ts Wrapper around the Gpthuman REST API.
129
+ GptHumanAPI.ts Wrapper around the GPTHuman REST API.
130
130
  HttpsClient.ts Thin axios wrapper with auth and timeout.
131
131
  type.d.ts Shared request/response interfaces.
132
132
  ```
133
133
 
134
134
  ## Links
135
135
 
136
- - [Gpthuman](https://gpthuman.ai)
137
- - [Gpthuman API docs](https://docs.gpthuman.ai)
136
+ - [GPTHuman](https://gpthuman.ai)
137
+ - [GPTHuman API docs](https://docs.gpthuman.ai)
138
138
  - [Model Context Protocol specification](https://modelcontextprotocol.io)
139
139
 
140
140
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpthuman/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Model Context Protocol (MCP) server providing access to GPTHuman's API, the leading platform for transforming AI-generated text into natural, human-sounding content that successfully bypasses AI detectors.",
5
5
  "author": "GPTHuman",
6
6
  "homepage": "https://github.com/GPTHuman-ai/mcp-server",