poe-code 2.0.61 → 2.0.62-beta.1
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 +22 -0
- package/dist/templates/codex/config.toml.hbs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,6 +81,28 @@ npx poe-code@latest install kimi
|
|
|
81
81
|
- `--dry-run` – show every mutation without touching disk.
|
|
82
82
|
- `--yes` – accept defaults for prompts.
|
|
83
83
|
|
|
84
|
+
## Poe MCP Server
|
|
85
|
+
|
|
86
|
+
Give any agent access to all Poe models including latest image, video, and audio models.
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
# Show configuration JSON and available tools
|
|
90
|
+
npx poe-code@latest mcp --help
|
|
91
|
+
|
|
92
|
+
# Configure an MCP client to use poe-code
|
|
93
|
+
npx poe-code@latest mcp configure claude-code
|
|
94
|
+
|
|
95
|
+
# Remove poe-code from an MCP client
|
|
96
|
+
npx poe-code@latest mcp unconfigure claude-code
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Available tools
|
|
100
|
+
|
|
101
|
+
- `generate_text` – Query any bot on Poe.
|
|
102
|
+
- `generate_image` – Generate images
|
|
103
|
+
- `generate_video` – Generate videos
|
|
104
|
+
- `generate_audio` – Convert text to audio
|
|
105
|
+
|
|
84
106
|
## SDK
|
|
85
107
|
|
|
86
108
|
Use `poe-code` programmatically in your own code:
|