From 6be6db21941e76fe2f0255b7cef88d98dcb0233c Mon Sep 17 00:00:00 2001 From: PeterZhong Date: Mon, 19 May 2025 12:10:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=85=A5MCP=20ListTool=E8=83=BD?= =?UTF-8?q?=E5=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/tool/ArcGisPro.cs | 6 ++++++ host/McpServerList.cs | 6 ++++++ host/mcp/InnerMcpServer.cs | 6 ++++++ host/mcp/McpToolDefinition.cs | 6 ++++++ 4 files changed, 24 insertions(+) create mode 100644 client/tool/ArcGisPro.cs create mode 100644 host/McpServerList.cs create mode 100644 host/mcp/InnerMcpServer.cs create mode 100644 host/mcp/McpToolDefinition.cs diff --git a/client/tool/ArcGisPro.cs b/client/tool/ArcGisPro.cs new file mode 100644 index 0000000..64e38d9 --- /dev/null +++ b/client/tool/ArcGisPro.cs @@ -0,0 +1,6 @@ +namespace LinkToolAddin.client.tool; + +public class ArcGisPro +{ + +} \ No newline at end of file diff --git a/host/McpServerList.cs b/host/McpServerList.cs new file mode 100644 index 0000000..48f66c4 --- /dev/null +++ b/host/McpServerList.cs @@ -0,0 +1,6 @@ +namespace LinkToolAddin.host; + +public class McpServerList +{ + +} \ No newline at end of file diff --git a/host/mcp/InnerMcpServer.cs b/host/mcp/InnerMcpServer.cs new file mode 100644 index 0000000..ccf5884 --- /dev/null +++ b/host/mcp/InnerMcpServer.cs @@ -0,0 +1,6 @@ +namespace LinkToolAddin.host.mcp; + +public class InnerMcpServer +{ + +} \ No newline at end of file diff --git a/host/mcp/McpToolDefinition.cs b/host/mcp/McpToolDefinition.cs new file mode 100644 index 0000000..3bd9adc --- /dev/null +++ b/host/mcp/McpToolDefinition.cs @@ -0,0 +1,6 @@ +namespace LinkToolAddin.host.mcp; + +public class McpDefinition +{ + +} \ No newline at end of file