mirror of
https://github.com/Tencent/WeKnora.git
synced 2026-08-29 02:04:30 +08:00
77b9b6a465
Make the agent-facing contract uniform across the whole surface: - cobra parse errors (unknown flag, arg-count) emit the JSON envelope by default, not bare prose — via a single DefaultFormatMode shared by the early resolver and ResolveDefault. - a malformed --jq is input.invalid_argument (exit 5), not internal.error. - destructive-confirmation messages name the real operation (edit/remove, not a hardcoded "delete"). - `doc wait` emits one envelope (Silent failure, no contradictory stderr); completed marshals as [] not null. - WEKNORA_AGENT_HELP covers every leaf command, enforced by a coverage drift guard; a sibling guard enforces --dry-run on every mutation. - `search docs`/`search chunks` resolve --kb through the same flag→env→project-link chain as `doc list`/`chat` (no longer a hard --kb requirement); a linked dir or WEKNORA_KB_ID now works without --kb, and an unresolved KB is local.kb_id_required (exit 1). The destructive `doc delete --all` keeps its explicit-only rule. - exit-code and batch/wait ok-semantics documented in the shared skill, README, and AGENTS.md.
42 lines
1.6 KiB
Go
42 lines
1.6 KiB
Go
// Package mcpcmd holds the `weknora mcp` command tree.
|
|
//
|
|
// MCP (Model Context Protocol; https://spec.modelcontextprotocol.io/) is
|
|
// the JSON-RPC 2.0 wire protocol agentic IDEs use to call external tools.
|
|
// `weknora mcp serve` exposes a curated subset of the CLI as MCP tools so
|
|
// an IDE-side agent can list / view / search / chat against the user's
|
|
// active WeKnora profile without shelling out to the CLI per call. Most
|
|
// tools are read-only; chat and session_ask create conversation/message
|
|
// records.
|
|
//
|
|
// Package name is `mcpcmd` to avoid shadowing `cli/internal/mcp` (the
|
|
// transport-and-handlers implementation). Same naming hygiene as
|
|
// `agentcmd` / `sessioncmd`.
|
|
package mcpcmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/Tencent/WeKnora/cli/internal/cmdutil"
|
|
)
|
|
|
|
// NewCmd builds the `weknora mcp` parent. Called from cli/cmd/root.go.
|
|
func NewCmd(f *cmdutil.Factory) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "mcp",
|
|
Short: "Run weknora as a Model Context Protocol server",
|
|
Long: `Exposes weknora's tool surface as MCP tools so any
|
|
MCP-compatible client can call them over JSON-RPC.
|
|
|
|
Curated 10-tool surface: kb_list / kb_view / doc_list / doc_view /
|
|
doc_download / search_chunks / chunk_list / agent_list are read-only;
|
|
chat and session_ask create conversation/message records. Destructive
|
|
verbs (create / delete / upload) are deliberately excluded - the agent
|
|
should ask the user before mutating; the CLI's exit-10 protocol covers
|
|
that path.`,
|
|
Args: cobra.NoArgs,
|
|
Run: func(c *cobra.Command, _ []string) { _ = c.Help() },
|
|
}
|
|
cmd.AddCommand(NewCmdServe(f))
|
|
return cmd
|
|
}
|