Skip to content

Commit 8c6f5c1

Browse files
chore: release v1.10.1
1 parent d5b8ffc commit 8c6f5c1

6 files changed

Lines changed: 25 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ dist/
55
.env
66
.env.*
77
projects/
8+
.axon/
9+
.opencode/

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.10.1] - 2026-04-10
9+
10+
### Changed
11+
12+
- Instruction examples now use discovered/default provider and model values instead of hardcoded Anthropic examples. This avoids steering MCP clients toward unavailable providers and aligns the startup guidance with `opencode_setup`.
13+
14+
### Fixed
15+
16+
- Health checks for authenticated OpenCode servers now propagate HTTP basic auth through the full auto-start path, including startup polling and reconnection flows.
17+
- `ensureServer()` now forwards configured server credentials during startup so remote protected servers no longer fail the health probe while coming online.
18+
19+
### Stats
20+
21+
- Tool count: 79
22+
- Tests: 320
23+
824
## [1.10.0] - 2026-02-10
925

1026
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ npm install
173173
npm run build
174174
npm start # run the MCP server
175175
npm run dev # watch mode
176-
npm test # 316 tests
176+
npm test # 320 tests
177177
```
178178

179179
### Smoke Testing

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-mcp",
3-
"version": "1.10.0",
3+
"version": "1.10.1",
44
"description": "MCP server that wraps the OpenCode AI headless server API — 79 tools, 10 resources, 6 prompts with multi-project support for any MCP client",
55
"type": "module",
66
"main": "dist/index.js",

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* providers, and more.
1010
*
1111
* Features:
12-
* - 78 tools covering the entire OpenCode API surface
12+
* - 79 tools covering the entire OpenCode API surface
1313
* - High-level workflow tools (opencode_ask, opencode_reply, etc.)
1414
* - Smart response formatting for LLM-friendly output
1515
* - MCP Resources for browseable project data
@@ -71,7 +71,7 @@ const client = new OpenCodeClient({ baseUrl, username, password, autoServe });
7171
const server = new McpServer(
7272
{
7373
name: "opencode-mcp",
74-
version: "1.10.0",
74+
version: "1.10.1",
7575
description:
7676
"MCP server wrapping the OpenCode AI coding agent. " +
7777
"Delegates complex coding tasks (build apps, refactor, debug) to an autonomous AI agent. " +
@@ -212,7 +212,7 @@ async function main() {
212212
? ` | defaults: ${defaultProvider}/${defaultModel}`
213213
: "";
214214
console.error(
215-
`opencode-mcp v1.9.0 started (OpenCode server at ${baseUrl}${defaultsInfo})`,
215+
`opencode-mcp v1.10.1 started (OpenCode server at ${baseUrl}${defaultsInfo})`,
216216
);
217217
}
218218

0 commit comments

Comments
 (0)