这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ kind: MCPServer
metadata:
name: fetch
spec:
type: "stdio"
transport: "stdio"
command: "uvx"
args: ["mcp-server-fetch"]
EOF
Expand Down
2 changes: 1 addition & 1 deletion kubechain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ More information can be found via the [Kubebuilder Documentation](https://book.k

Model Control Protocol (MCP) servers provide a way to extend the functionality of LLMs with custom tools. The MCPServer resource supports:

- **Transport Types:**
- **Transport:**
- `stdio`: Communicate with an MCP server via standard I/O
- `http`: Communicate with an MCP server via HTTP

Expand Down
8 changes: 8 additions & 0 deletions kubechain/docs/crd-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ ResourceList is a map of ResourceName to resource.Quantity (e.g., `cpu: 100m`).
| `statusDetail` | string | Detailed status message |
| `tools` | []MCPTool | List of tools provided by the MCP server |

#### MCPTool

| Field | Type | Description | Required |
|-------|------|-------------|----------|
| `name` | string | Name of the tool | Yes |
| `description` | string | Description of the tool | No |
| `inputSchema` | runtime.RawExtension | JSON schema for the tool's input parameters | No |

## LLM

The LLM CRD represents a Large Language Model configuration.
Expand Down