@kadoa/mcp 0.1.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/README.md +104 -0
- package/dist/index.js +34656 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# Kadoa MCP Server
|
|
2
|
+
|
|
3
|
+
Use [Kadoa](https://kadoa.com) from Claude Desktop, Cursor, Claude Code, and other MCP clients.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
### Claude Code
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
claude mcp add --transport stdio kadoa -- npx -y @kadoa/mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Set your API key:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
export KADOA_API_KEY=tk-your_api_key
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Claude Desktop
|
|
20
|
+
|
|
21
|
+
Add to `~/.config/Claude/claude_desktop_config.json`:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"mcpServers": {
|
|
26
|
+
"kadoa": {
|
|
27
|
+
"command": "npx",
|
|
28
|
+
"args": ["-y", "kadoa-mcp"],
|
|
29
|
+
"env": {
|
|
30
|
+
"KADOA_API_KEY": "tk-your_api_key"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Restart Claude Desktop.
|
|
38
|
+
|
|
39
|
+
### Cursor
|
|
40
|
+
|
|
41
|
+
Add to `.cursor/mcp.json`:
|
|
42
|
+
|
|
43
|
+
```json
|
|
44
|
+
{
|
|
45
|
+
"mcpServers": {
|
|
46
|
+
"kadoa": {
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["-y", "kadoa-mcp"],
|
|
49
|
+
"env": {
|
|
50
|
+
"KADOA_API_KEY": "tk-your_api_key"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Get Your API Key
|
|
58
|
+
|
|
59
|
+
Get your API key from [kadoa.com/settings](https://kadoa.com/settings).
|
|
60
|
+
|
|
61
|
+
## Tools
|
|
62
|
+
|
|
63
|
+
| Tool | Description |
|
|
64
|
+
|------|-------------|
|
|
65
|
+
| `create_workflow` | Create an agentic navigation workflow from a prompt |
|
|
66
|
+
| `list_workflows` | List all workflows with status |
|
|
67
|
+
| `get_workflow` | Get detailed workflow information |
|
|
68
|
+
| `run_workflow` | Execute a workflow |
|
|
69
|
+
| `fetch_data` | Get extracted data from a workflow |
|
|
70
|
+
| `delete_workflow` | Delete a workflow |
|
|
71
|
+
| `approve_workflow` | Approve and activate a workflow |
|
|
72
|
+
| `update_workflow` | Update workflow configuration and schema |
|
|
73
|
+
|
|
74
|
+
## Usage Examples
|
|
75
|
+
|
|
76
|
+
Ask your AI assistant:
|
|
77
|
+
|
|
78
|
+
- "List my Kadoa workflows"
|
|
79
|
+
- "Create a workflow to extract product prices from example.com"
|
|
80
|
+
- "Run workflow abc123 and show me the results"
|
|
81
|
+
- "Update the schema for workflow abc123 to include a rating field"
|
|
82
|
+
|
|
83
|
+
## Troubleshooting
|
|
84
|
+
|
|
85
|
+
**"KADOA_API_KEY environment variable required"**
|
|
86
|
+
- Make sure `KADOA_API_KEY` is set in your MCP config or environment
|
|
87
|
+
- API keys start with `tk-`
|
|
88
|
+
|
|
89
|
+
**Claude says "I don't have access to Kadoa"**
|
|
90
|
+
- Verify the MCP server is configured correctly
|
|
91
|
+
- Restart your MCP client
|
|
92
|
+
|
|
93
|
+
## Development
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
bun install
|
|
97
|
+
bun run dev # Run locally
|
|
98
|
+
bun run test # Run tests
|
|
99
|
+
bun run build # Build for distribution
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## License
|
|
103
|
+
|
|
104
|
+
MIT
|