@gpthuman/mcp-server 1.0.0 → 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.
- package/README.md +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
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
|
|
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
|
|
18
|
+
| `GPTHUMAN_API_KEY` | Yes | Your GPTHuman API key. |
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
@@ -28,7 +28,7 @@ Add the server to `~/.cursor/mcp.json` (or your workspace `.cursor/mcp.json`):
|
|
|
28
28
|
"mcpServers": {
|
|
29
29
|
"gpthuman": {
|
|
30
30
|
"command": "npx",
|
|
31
|
-
"args": ["-y", "@gpthuman
|
|
31
|
+
"args": ["-y", "@gpthuman/mcp-server"],
|
|
32
32
|
"env": {
|
|
33
33
|
"GPTHUMAN_API_KEY": "your-api-key-here"
|
|
34
34
|
}
|
|
@@ -46,7 +46,7 @@ Add it to `claude_desktop_config.json`:
|
|
|
46
46
|
"mcpServers": {
|
|
47
47
|
"gpthuman": {
|
|
48
48
|
"command": "npx",
|
|
49
|
-
"args": ["-y", "@gpthuman
|
|
49
|
+
"args": ["-y", "@gpthuman/mcp-server"],
|
|
50
50
|
"env": {
|
|
51
51
|
"GPTHUMAN_API_KEY": "your-api-key-here"
|
|
52
52
|
}
|
|
@@ -60,7 +60,7 @@ Add it to `claude_desktop_config.json`:
|
|
|
60
60
|
Any MCP client that supports the stdio transport can run the server with:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
GPTHUMAN_API_KEY=your-api-key-here npx -y @gpthuman
|
|
63
|
+
GPTHUMAN_API_KEY=your-api-key-here npx -y @gpthuman/mcp-server
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
## Tools
|
|
@@ -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
|
|
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
|
-
- [
|
|
137
|
-
- [
|
|
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.
|
|
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",
|