Uh oh!
There was an error while loading. Please reload this page.
feat: implement MCP prompts support - #35
Closed
ezynda3 wants to merge 6 commits into
Closed
Conversation
Adds support for Model Context Protocol (MCP) prompts, which enable servers to define reusable prompt templates and workflows that clients can easily surface to users and LLMs. They provide a powerful way to standardize and share common LLM interactions. Key changes: - Fetch prompts from MCP servers - Register prompts as commands with format `<mcp_server>:<prompt_name>` - Create dialog for prompt arguments - Process structured responses including resources - Send formatted messages with attachments 🤖 Generated with opencode Co-Authored-By: opencode <noreply@opencode.ai>
Updates the MCP Go SDK from v0.17.0 to v0.28.0 to ensure compatibility with the latest MCP protocol features. 🤖 Generated with opencode Co-Authored-By: opencode <noreply@opencode.ai>
Refactors the MCP client handling to reuse the same client for fetching both tools and prompts from each server. This improves efficiency by: - Creating a single client per server - Fetching both tools and prompts in one pass - Using a shared initialization process - Properly managing client lifecycle 🤖 Generated with opencode Co-Authored-By: opencode <noreply@opencode.ai>
thdxr
commented
Jun 14, 2025
Member
closing as we rewrote the codebase - appreciate it though! |
randomm referenced
this pull request
in randomm/opencode
Jan 9, 2026
Remove development artifacts and nested source code that don't belong in this configuration repository: - opencode_repo/ (nested Git repository kept for reference) - tests/ and requirements-test.txt (development artifacts) - Cache files (.coverage, .mypy_cache/, .DS_Store) - Deprecated files (.env.example, .screenrc, opencode.json.backup) This cleanup keeps the repository focused on its core purpose: agent configurations, prompts, instructions, and documentation.
groeimetai
commented
Jan 11, 2026
✅ Fixed in v9.0.166This issue has been fully resolved. All Changes MadeCore initialization files:
Tool execution files:
VerificationThe After this fix, running: node dist/mcp/servicenow-mcp-unified/index.js 2>/dev/nullShould produce no output on stdout, ensuring clean JSON-RPC communication with Claude Desktop. Updatenpm install -g snow-flow@latestCommit:serac-labs/serac@b4715b00 |
bussard76 pushed a commit
to bussard76/openwork
that referenced
this pull request
May 12, 2026
* feat: refresh session layout for non-technical flow * feat: refresh session layout for non-technical flow
This was referenced Jul 24, 2026
Closed
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 freeto 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
Test plan
🤖 Generated with opencode