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
29 changes: 3 additions & 26 deletions backend/app/mcp/mcp_bridge/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const TOOLS = [
{
name: "ucore_list_skills",
description:
"List all registered uCore skills (currently 54). Returns id, name, description, category, and parameters for each skill.",
"List governed internal uCore capabilities. Returns id, name, description, category, and parameters.",
inputSchema: {
type: "object",
properties: {
Expand All @@ -72,14 +72,13 @@ const TOOLS = [
{
name: "ucore_run_skill",
description:
"Execute a named uCore skill by its ID. Skills include: ecosystem-audit, file_edit_enhancer, surface-registry, mcp_self_heal, dev-mode-executor, vault_discovery, and 48 more.",
"Execute a governed internal uCore capability by its ID.",
inputSchema: {
type: "object",
properties: {
skill_id: {
type: "string",
description:
"The skill ID to run (e.g. 'ecosystem-audit', 'surface-registry', 'file_edit_enhancer')",
description: "The capability ID returned by ucore_list_skills",
},
params: {
type: "object",
Expand All @@ -89,16 +88,6 @@ const TOOLS = [
required: ["skill_id"],
},
},
{
name: "ucore_surface_registry",
description:
"List all registered uCore surfaces (Groovebox, Developer, Server, System, Workflow, etc.) with their status, port, and health.",
inputSchema: {
type: "object",
properties: {},
required: [],
},
},
{
name: "ucore_ollama_status",
description:
Expand Down Expand Up @@ -314,18 +303,6 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
};
}

case "ucore_surface_registry": {
const data = await apiPost("/api/skills/surface-registry/run", {});
return {
content: [
{
type: "text",
text: JSON.stringify(data, null, 2),
},
],
};
}

case "ucore_ollama_status": {
const data = await apiGet("/api/ollama/status");
const models = await apiGet("/api/ollama/models/available");
Expand Down
240 changes: 0 additions & 240 deletions backend/app/skills/builtin/file_edit_enhancer.py

This file was deleted.

Loading
Loading