Add Qoder IDE as a supported MCP client - #5870
Merged
Merged
Conversation
haaaashimi
requested review from
ChrisJBurns,
JAORMX,
amirejaz,
aponcedeleonch,
jhrozek,
rdimitrov and
reyortiz3
as code owners
July 18, 2026 19:05
Contributor
Author
|
mcp.json path is verified with all platforms. |
Add Qoder to the list of supported MCP clients with platform-specific config paths: - macOS/Linux: ~/.qoder/mcp.json - Windows: ~/AppData/Roaming/Qoder/SharedClientCache/mcp.json Also fix IsClientInstalled to correctly handle clients with empty RelPath but non-empty PlatformPrefix (e.g. Qoder on all platforms). Signed-off-by: haashim-mac <haashimaag@gmail.com>
haaaashimi
force-pushed
the
add-qoder-client
branch
from
July 19, 2026 11:41
5c7f4ba to
511c87b
Compare
Contributor
Author
|
force pushed to add sign off |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5870 +/- ##
==========================================
- Coverage 72.96% 72.93% -0.03%
==========================================
Files 742 742
Lines 78236 78236
==========================================
- Hits 57085 57062 -23
- Misses 17172 17194 +22
- Partials 3979 3980 +1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
- Fix exported const comment: QoderIDE -> Qoder - Add missing Qoder cases in exhaustive switches in config_test - Add Qoder to the catch-all case list in switch statement Signed-off-by: haashim-mac <haashimaag@gmail.com>
haaaashimi
force-pushed
the
add-qoder-client
branch
from
July 23, 2026 08:27
0885338 to
4f7c6e0
Compare
Contributor
Author
|
fixed linting issues. |
Contributor
Author
|
merged upstream changes |
jerm-dro
requested changes
Aug 13, 2026
jerm-dro
approved these changes
Aug 19, 2026
2 tasks
samuv
added a commit
to stacklok/toolhive-studio
that referenced
this pull request
Aug 27, 2026
ToolHive v0.45.0 added Qoder IDE as a supported MCP client (stacklok/toolhive#5870). The Flatpak build runs `thv client register --help` at make time and fails if any reported client is missing from CLIENT_FLATPAK_PATHS. Map `qoder` to `~/.qoder`, matching the Linux config path declared upstream.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
~/.qoder/mcp.json~/AppData/Roaming/Qoder/SharedClientCache/mcp.jsonPlatformPrefixonly (emptyRelPath), soIsClientInstallednow detects this shape — a new detection requirement, not a bug fix~/.qoder/skills/(user) and.qoder/skills/(project)Type of change
Test plan
task test)task lint-fix)TestIsClientInstalledcases covering emptyRelPath+ populatedPlatformPrefix(directory present and absent)TestQoderConfigPathsResolveCorrectlyvalidating the real Qoder config paths resolve to the documented locationsChanges
pkg/client/config.goQoderconstant andsupportedClientIntegrationsentry with platform-specific paths; skills paths set to.qoderpkg/client/config_test.gopkg/client/discovery.goRelPathbut populatedPlatformPrefixinIsClientInstalledpkg/client/discovery_test.goPlatformPrefix-only detection shape and Qoder path resolutiondocs/cli/thv_client_register.mddocs/cli/thv_client_remove.mddocs/server/swagger.yamlClientAppenumdocs/server/swagger.jsonClientAppenumdocs/server/docs.goDoes this introduce a user-facing change?
Yes — users can now run
thv client register qoderto configure Qoder for MCP server integration and skill installation.