Skip to content

Commit b3f647b

Browse files
authored
Merge pull request #143 from runebookai/0.12.5
Bump 0.12.5
2 parents 8d18970 + 51fb4b4 commit b3f647b

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.12.5 - 2025-09-30
4+
5+
### Fixes
6+
7+
- Fixes issue where Tome shows Smithery MCP servers it's not capable of running.
8+
39
## 0.12.4 - 2025-09-24
410

511
### Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tome",
33
"private": true,
4-
"version": "0.12.4",
4+
"version": "0.12.5",
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "Tome"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
description = "The easiest way to work with local models and MCP servers."
55
authors = ["Runebook"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
},
6060
"productName": "Tome",
6161
"mainBinaryName": "tome",
62-
"version": "0.12.4",
62+
"version": "0.12.5",
6363
"identifier": "co.runebook",
6464
"plugins": {
6565
"sql": {

src/lib/smithery/client.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ export class Client extends HttpClient {
1717
}
1818

1919
async servers(page: number = 1): Promise<CompactServer[]> {
20-
return ((await this.get(`/servers?pageSize=24&page=${page}`)) as ServerList).servers.filter(
21-
s => Number(s.useCount) > 0
22-
);
20+
return (
21+
(await this.get(`/servers?q=is:local&pageSize=24&page=${page}`)) as ServerList
22+
).servers.filter(s => Number(s.useCount) > 0);
2323
}
2424

2525
async server(name: string): Promise<Server> {

0 commit comments

Comments
 (0)