suparank 1.0.0
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/LICENSE +21 -0
- package/README.md +224 -0
- package/bin/suparank.js +611 -0
- package/credentials.example.json +34 -0
- package/mcp-client.js +2446 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "suparank",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI-powered SEO content creation MCP - generate and publish optimized blog posts with Claude, ChatGPT, or Cursor",
|
|
5
|
+
"main": "mcp-client.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"suparank": "./bin/suparank.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"mcp-client.js",
|
|
13
|
+
"credentials.example.json",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"start": "node mcp-client.js",
|
|
19
|
+
"test": "node bin/suparank.js test"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"mcp",
|
|
23
|
+
"model-context-protocol",
|
|
24
|
+
"seo",
|
|
25
|
+
"content",
|
|
26
|
+
"ai",
|
|
27
|
+
"claude",
|
|
28
|
+
"cursor",
|
|
29
|
+
"chatgpt",
|
|
30
|
+
"blog",
|
|
31
|
+
"wordpress",
|
|
32
|
+
"ghost",
|
|
33
|
+
"content-generation",
|
|
34
|
+
"anthropic",
|
|
35
|
+
"openai"
|
|
36
|
+
],
|
|
37
|
+
"author": "Suparank <hello@suparank.io>",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/Suparank/Suparank-MCP.git"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/Suparank/Suparank-MCP/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://suparank.io",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
49
|
+
"marked": "^15.0.12"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=18.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|