captchakraken-mcp 0.1.1 → 0.1.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 +11 -4
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/JWriter20/CaptchaKraken/main/docs/assets/logo-card.png" alt="CaptchaKraken" width="128" height="128">
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
<h1 align="center">captchakraken-mcp</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<b>The CaptchaKraken account, driven from an MCP client.</b>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
It signs you in through GitHub, mints and revokes API keys for the solving
|
|
12
|
+
endpoint, and reads back what you have spent.
|
|
6
13
|
|
|
7
14
|
**It does not solve captchas.** The key it mints is what does that, against the
|
|
8
15
|
OpenAI-compatible endpoint at `api.captchakraken.com/v1`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "captchakraken-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server for CaptchaKraken: sign in with GitHub, mint API keys for the
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "MCP server for the CaptchaKraken account: sign in with GitHub, mint and revoke API keys for the captcha-solving endpoint, and read your usage and balance. Writes the key to disk so the solver needs no environment variables.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Jake Writer",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -25,7 +25,10 @@
|
|
|
25
25
|
"mcp",
|
|
26
26
|
"model-context-protocol",
|
|
27
27
|
"captcha",
|
|
28
|
-
"captchakraken"
|
|
28
|
+
"captchakraken",
|
|
29
|
+
"claude",
|
|
30
|
+
"api-keys",
|
|
31
|
+
"llm-tools"
|
|
29
32
|
],
|
|
30
33
|
"bugs": {
|
|
31
34
|
"url": "https://github.com/JWriter20/CaptchaKraken/issues"
|