Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
github avatar

Mcp Copilot Studio Server Generator

  • 8.6k installs
  • 37.1k repo stars
  • Updated July 28, 2026
  • github/awesome-copilot

mcp-copilot-studio-server-generator is an agent skill that Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support.

About

Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support --- name: mcp-copilot-studio-server-generator description: 'Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support' --- # Power Platform MCP Connector Generator Generate a complete Power Platform custom connector with Model Context Protocol (MCP) integration for Microsoft Copilot Studio. This prompt creates all necessary files following Power Platform connector standards with MCP streamable HTTP support. ## Instructions Create a complete MCP server implementation that: 1. **Uses Copilot Studio MCP Pattern:** - Implement `x-ms-agentic-protocol: mcp-streamable-1.0` - Support JSON-RPC 2.0 communication protocol - Provide streamable HTTP endpoint at `/mcp` - Follow Power Platform connector structure 2. **Schema Compliance Requirements:** - **NO reference types** in tool inputs/outputs (filtered by Copilot Studio) - **Single type values only** (not arrays of multiple types) - **Avoid enum inputs** (interpreted as string, not enum) - Use primitive types:.

  • Power Platform MCP Connector Generator
  • **Uses Copilot Studio MCP Pattern:**
  • Implement `x-ms-agentic-protocol: mcp-streamable-1.0`
  • Support JSON-RPC 2.0 communication protocol
  • Provide streamable HTTP endpoint at `/mcp`

Mcp Copilot Studio Server Generator by the numbers

  • 8,610 all-time installs (skills.sh)
  • +23 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #75 of 1,041 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

mcp-copilot-studio-server-generator capabilities & compatibility

Capabilities
power platform mcp connector generator · **uses copilot studio mcp pattern:** · implement `x ms agentic protocol: mcp streamable · support json rpc 2.0 communication protocol · provide streamable http endpoint at `/mcp`
Use cases
documentation
From the docs

What mcp-copilot-studio-server-generator says it does

This prompt creates all necessary files following Power Platform connector standards with MCP streamable HTTP support.
SKILL.md
## Instructions Create a complete MCP server implementation that: 1.
SKILL.md
**apiProperties.json** with: - Connector metadata and branding - Authentication configuration - Policy templates if needed 3.
SKILL.md
**MCP Server Code** with: - JSON-RPC 2.0 request handler - Tool registration and execution - Resource management (as tool outputs) - Proper error handling - Copilot Studio compatibility checks 5.
SKILL.md
npx skills add https://github.com/github/awesome-copilot --skill mcp-copilot-studio-server-generator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs8.6k
repo stars37.1k
Security audit3 / 3 scanners passed
Last updatedJuly 28, 2026
Repositorygithub/awesome-copilot

What problem does mcp-copilot-studio-server-generator solve for developers using this skill?

Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support

Who is it for?

Developers who need mcp-copilot-studio-server-generator patterns described in the cached skill documentation.

Skip if: Skip when docs are empty or the task is outside the skill's documented scope.

When should I use this skill?

Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support

What you get

Actionable workflows and conventions from SKILL.md for mcp-copilot-studio-server-generator.

  • MCP server code
  • Power Platform connector definition
  • Streamable HTTP transport config

By the numbers

  • Implements x-ms-agentic-protocol mcp-streamable-1.0
  • Uses JSON-RPC 2.0 for Copilot Studio MCP communication

Files

SKILL.mdMarkdownGitHub ↗

Power Platform MCP Connector Generator

Generate a complete Power Platform custom connector with Model Context Protocol (MCP) integration for Microsoft Copilot Studio. This prompt creates all necessary files following Power Platform connector standards with MCP streamable HTTP support.

Instructions

Create a complete MCP server implementation that:

1. Uses Copilot Studio MCP Pattern:

  • Implement x-ms-agentic-protocol: mcp-streamable-1.0
  • Support JSON-RPC 2.0 communication protocol
  • Provide streamable HTTP endpoint at /mcp
  • Follow Power Platform connector structure

2. Schema Compliance Requirements:

  • NO reference types in tool inputs/outputs (filtered by Copilot Studio)
  • Single type values only (not arrays of multiple types)
  • Avoid enum inputs (interpreted as string, not enum)
  • Use primitive types: string, number, integer, boolean, array, object
  • Ensure all endpoints return full URIs

3. MCP Components to Include:

  • Tools: Functions for the language model to call (✅ Supported in Copilot Studio)
  • Resources: File-like data outputs from tools (✅ Supported in Copilot Studio - must be tool outputs to be accessible)
  • Prompts: Predefined templates for specific tasks (❌ Not yet supported in Copilot Studio)

4. Implementation Structure:

   /apiDefinition.swagger.json  (Power Platform connector schema)
   /apiProperties.json         (Connector metadata and configuration)
   /script.csx                 (Custom code transformations and logic)
   /server/                    (MCP server implementation)
   /tools/                     (Individual MCP tools)
   /resources/                 (MCP resource handlers)

Context Variables

  • Server Purpose: [Describe what the MCP server should accomplish]
  • Tools Needed: [List of specific tools to implement]
  • Resources: [Types of resources to provide]
  • Authentication: [Auth method: none, api-key, oauth2]
  • Host Environment: [Azure Function, Express.js, FastAPI, etc.]
  • Target APIs: [External APIs to integrate with]

Expected Output

Generate:

1. apiDefinition.swagger.json with:

  • Proper x-ms-agentic-protocol: mcp-streamable-1.0
  • MCP endpoint at POST /mcp
  • Compliant schema definitions (no reference types)
  • McpResponse and McpErrorResponse definitions

2. apiProperties.json with:

  • Connector metadata and branding
  • Authentication configuration
  • Policy templates if needed

3. script.csx with:

  • Custom C# code for request/response transformations
  • MCP JSON-RPC message handling logic
  • Data validation and processing functions
  • Error handling and logging capabilities

4. MCP Server Code with:

  • JSON-RPC 2.0 request handler
  • Tool registration and execution
  • Resource management (as tool outputs)
  • Proper error handling
  • Copilot Studio compatibility checks

5. Individual Tools that:

  • Accept only primitive type inputs
  • Return structured outputs
  • Include resources as outputs when needed
  • Provide clear descriptions for Copilot Studio

6. Deployment Configuration for:

  • Power Platform environment
  • Copilot Studio agent integration
  • Testing and validation

Validation Checklist

Ensure generated code:

  • [ ] No reference types in schemas
  • [ ] All type fields are single types
  • [ ] Enum handling via string with validation
  • [ ] Resources available through tool outputs
  • [ ] Full URI endpoints
  • [ ] JSON-RPC 2.0 compliance
  • [ ] Proper x-ms-agentic-protocol header
  • [ ] McpResponse/McpErrorResponse schemas
  • [ ] Clear tool descriptions for Copilot Studio
  • [ ] Generative Orchestration compatible

Example Usage

Server Purpose: Customer data management and analysis
Tools Needed: 
  - searchCustomers
  - getCustomerDetails
  - analyzeCustomerTrends
Resources:
  - Customer profiles
  - Analysis reports
Authentication: oauth2
Host Environment: Azure Function
Target APIs: CRM System REST API

Related skills

How it compares

Choose mcp-copilot-studio-server-generator when Copilot Studio connector schemas are required instead of a generic MCP stdio server.

FAQ

What does mcp-copilot-studio-server-generator do?

Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support

When should I use mcp-copilot-studio-server-generator?

Generate a complete MCP server implementation optimized for Copilot Studio integration with proper schema constraints and streamable HTTP support

Is mcp-copilot-studio-server-generator safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.