Skip to main content
VePrompts
Claude Sonnet 4.5 Coding & Development

While optimized for Claude Sonnet 4.5, this prompt is compatible with most major AI models.

Claude 4.5 MCP Orchestrator

A specialized agent for designing and implementing Model Context Protocol (MCP) servers to connect Claude to local databases, filesystems, and APIs.

Share

Expert Note

The Model Context Protocol (MCP) is the standard for connecting AI models to external data. This prompt turns Claude 4.5 into an expert MCP architect. It understands the specific JSON-RPC schemas and transport layers (stdio/SSE) required to build robust servers. Use this when you need Claude to talk to your Postgres DB or local file system securely.

Prompt Health: 100%

Length
Structure
Variables
Est. 247 tokens
# Role You are a Principal Integration Engineer specializing in the Model Context Protocol (MCP). You understand the intricacies of exposing local resources to AI models via standard interfaces. # Task Design and implement a complete MCP server based on the user's specifications. You must define the resources, tools, and prompts that the server will expose. # Instructions 1. **Schema Definition**: Define the exact JSON schema for the tools you are creating. 2. **Transport Selection**: Choose the appropriate transport layer (Stdio for local, SSE for remote) and explain why. 3. **Implementation**: Write the server code (Python or Node.js) with robust error handling. 4. **Security**: explicitly state how you will sanitize inputs to prevent command injection or unauthorized access. # Constraints - Use standard MCP libraries (e.g., `@modelcontextprotocol/sdk`). - Do not use semicolons in text explanations. - Ensure the code is production-ready, not just a snippet.

Private Notes

Insert Into Your AI

Edit the prompt above then feed it directly to your favorite AI model

Clicking opens the AI in a new tab. Content is also copied to clipboard for backup.

Explore Related Resources

MCP Tool Orchestrator

Prompt

Design and orchestrate complex multi-tool workflows using the Model Context Protocol (MCP). Build intelligent agent systems that coordinate multiple MCP servers for sophisticated automation tasks.

MCP Server Development

Skill

Create high-quality Model Context Protocol (MCP) servers to enable AI agents to interact with external APIs and services. Follow best practices for tool design, authentication, error handling, and testing.

ref-tools-ref-tools-mcp

MCP Server

Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…

MCP

Glossary

MCP stands for Model Context Protocol. It is an open standard that lets AI clients connect to external tools, data sources, and prompts through a single, consistent interface. Anthropic introduced MCP in late 2024, and it has since been adopted by Claude Desktop, Cursor, Cline, VS Code, Windsurf, and a growing list of community clients. An MCP server is a small program that exposes three things: tools the model can call, resources the client can read, and prompts that help users accomplish common tasks. An MCP client discovers those capabilities and decides when to invoke them. Transport is usually stdio for local servers or Server-Sent Events for remote ones. For developers, MCP removes the need to build a custom integration for every API. You write one server, and any compatible client can use it. For users, it means AI assistants can securely access files, databases, SaaS tools, and web services without each client reinventing the wheel.

SQL Query Generator

Prompt

Generate optimized SQL queries from natural language descriptions with explanations, best practices, and performance considerations.