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 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:
@@ -5,5 +5,5 @@ model_reasoning_effort = "{{reasoningEffort}}"
5
5
  [model_providers.poe]
6
6
  name = "poe"
7
7
  base_url = "{{{baseUrl}}}"
8
- wire_api = "chat"
8
+ wire_api = "responses"
9
9
  experimental_bearer_token = "{{apiKey}}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "2.0.61",
3
+ "version": "2.0.62-beta.1",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "scripts": {