Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MCP: tool schema fixups #244467

Closed
2 tasks done
connor4312 opened this issue Mar 24, 2025 · 2 comments
Closed
2 tasks done

MCP: tool schema fixups #244467

connor4312 opened this issue Mar 24, 2025 · 2 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug chat-mcp verified Verification succeeded
Milestone

Comments

@connor4312
Copy link
Member

connor4312 commented Mar 24, 2025

Please add cases to this issue where you find tool schema scenarios that need to be fixed

  • Having a {"type":"array" without a spec for items
  • "VSCode support for MCP fails if any of the tools has a parameter declared as a restricted-size array. The SDK for MCP uses Zod for type description, and the z.tuple() type generator seems to map to an array of fixed size"
@connor4312 connor4312 added bug Issue identified by VS Code Team member as probable bug chat-mcp labels Mar 24, 2025
@connor4312 connor4312 added this to the March 2025 milestone Mar 24, 2025
@connor4312 connor4312 self-assigned this Mar 24, 2025
@digitarald
Copy link
Contributor

Test case

import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { z } from "zod";

const server = new McpServer({
  name: "Test MCP Server",
  version: "0.0.1"
});

server.tool("todays_quote",
            "Returns the quote of the day, based on a day of the week.",
            { dayName: z.string(), arg1: z.tuple([z.string(), z.record(z.any())]) },
            async ({ dayName }) => {
              const quotes = {
                monday: "Monday is the day that my coffee needs coffee.",
                tuesday: "Tuesday is the day I actually start the week.",
                wednesday: "Wednesday is like a math problem. It’s all about finding the right angle.",
                thursday: "Thursday is the new Friday.",
                friday: "Friday is a reminder that I survived the week.",
                saturday: "Saturday is for adventure.",
                sunday: "Sunday is a day of rest."
              };
              const key = dayName.toLowerCase() as keyof typeof quotes;
              return { content: [{ type: "text", text: quotes[key] || "Invalid day name." }] };
            }
          );

const transport = new StdioServerTransport();
await server.connect(transport);

@connor4312
Copy link
Member Author

should be fixed off copilot chat main

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue identified by VS Code Team member as probable bug chat-mcp verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

2 participants