mcp / faq.html
airabbitX's picture
Upload 9 files
3f22380 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCP FAQ - Model Context Protocol</title>
<meta name="description" content="Frequently asked questions about the Model Context Protocol (MCP) for AI integration.">
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
.faq-item {
margin-bottom: 2rem;
background-color: white;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.faq-question {
font-weight: 600;
font-size: 1.25rem;
margin-bottom: 0.75rem;
color: var(--primary-color);
}
.faq-answer {
line-height: 1.6;
}
.faq-category {
margin-bottom: 3rem;
}
</style>
</head>
<body>
<header>
<div class="container header-container">
<a href="index.html" class="logo">MCP<span>Hub</span></a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="architecture.html">Architecture</a></li>
<li><a href="benefits.html">Benefits</a></li>
<li><a href="ecosystem.html">Ecosystem</a></li>
<li><a href="getting-started.html">Get Started</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Frequently Asked Questions</h1>
<p>Common questions and answers about the Model Context Protocol</p>
</div>
</section>
<main class="container">
<section>
<h2>Quick Navigation</h2>
<ul style="margin-left: 2rem; margin-bottom: 2rem;">
<li><a href="#general">General Questions</a></li>
<li><a href="#technical">Technical Questions</a></li>
<li><a href="#implementation">Implementation Questions</a></li>
<li><a href="#security">Security and Privacy</a></li>
<li><a href="#ecosystem">Ecosystem and Community</a></li>
</ul>
</section>
<section id="general" class="faq-category">
<h2>General Questions</h2>
<div class="faq-item">
<div class="faq-question">What is the Model Context Protocol (MCP)?</div>
<div class="faq-answer">
<p>
The Model Context Protocol (MCP) is an open protocol that standardizes how AI models connect to external data sources and tools. It provides a consistent interface for AI applications to access, retrieve, and interact with information from various systems, eliminating the need for custom integrations for each data source or tool.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Who created MCP?</div>
<div class="faq-answer">
<p>
MCP was developed and open-sourced by Anthropic in 2024. While Anthropic created the initial protocol, MCP is designed as an open standard, and its evolution is influenced by contributions from the broader developer community.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What problem does MCP solve?</div>
<div class="faq-answer">
<p>
MCP addresses the challenge of connecting AI models to external data sources and tools. Before MCP, developers needed to create custom integrations for each data source, leading to fragmented implementations and maintenance challenges. MCP provides a standardized way for AI models to access information and functionality from various systems, simplifying development and improving interoperability.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Is MCP only for Claude, or can other AI models use it?</div>
<div class="faq-answer">
<p>
MCP is designed as an open, model-agnostic protocol that can be used with any AI model, not just Claude. While Anthropic's Claude was the first major AI assistant to support MCP, the protocol is designed to be used with any AI system, including models from other providers and open-source models. The OpenAI Agents SDK, for example, has implemented MCP support.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How is MCP different from other AI integration approaches?</div>
<div class="faq-answer">
<p>
MCP differs from other AI integration approaches in several key ways:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Standardization:</strong> MCP provides a consistent interface across different data sources and tools, unlike custom API integrations that require specific code for each integration.
</li>
<li>
<strong>Security:</strong> MCP allows data sources to maintain control over their information and doesn't require sharing API keys with AI providers.
</li>
<li>
<strong>Platform Independence:</strong> Unlike plugin systems that are tied to specific platforms, MCP is platform-agnostic and can work with any AI model or application.
</li>
<li>
<strong>Comprehensive Solution:</strong> MCP provides both context provision and tool invocation capabilities in a unified protocol, whereas other approaches might focus on just one aspect.
</li>
</ul>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Is MCP free to use?</div>
<div class="faq-answer">
<p>
Yes, MCP is an open protocol that is free to use. The specification, reference implementations, and SDKs are open source and available under permissive licenses that allow for commercial use.
</p>
</div>
</div>
</section>
<section id="technical" class="faq-category">
<h2>Technical Questions</h2>
<div class="faq-item">
<div class="faq-question">How does MCP work at a high level?</div>
<div class="faq-answer">
<p>
MCP follows a client-server architecture:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>MCP Clients:</strong> Applications that use AI models and need to access external data or functionality (like Claude Desktop or custom AI applications).
</li>
<li>
<strong>MCP Servers:</strong> Components that expose data sources, tools, and functionality to MCP clients (like file system servers, database connectors, or API integrations).
</li>
</ul>
<p style="margin-top: 0.5rem;">
Clients connect to servers, discover available tools through the <code>listTools</code> method, and invoke tools using the <code>callTool</code> method with appropriate parameters. Servers process these requests and return results to the clients, which can then incorporate the information into the AI model's context.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What transport mechanisms does MCP support?</div>
<div class="faq-answer">
<p>
MCP currently supports two main transport mechanisms:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>stdio (Standard Input/Output):</strong> Used for local communication between clients and servers running on the same machine. The server runs as a subprocess of the client application.
</li>
<li>
<strong>HTTP over SSE (Server-Sent Events):</strong> Used for remote communication between clients and servers running on different machines or in cloud environments. This enables distributed architectures where servers can run separately from clients.
</li>
</ul>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What programming languages are supported by MCP?</div>
<div class="faq-answer">
<p>
MCP provides official SDKs for several programming languages:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>TypeScript/JavaScript (for Node.js and browser applications)</li>
<li>Python</li>
<li>Java (in collaboration with Spring AI)</li>
<li>C# (.NET)</li>
</ul>
<p style="margin-top: 0.5rem;">
The community is working on implementations for additional languages. Since MCP is an open protocol, developers can also create implementations for other languages as needed.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What is an MCP tool?</div>
<div class="faq-answer">
<p>
An MCP tool is a functional unit exposed by an MCP server that provides specific capabilities to MCP clients. Each tool has:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li><strong>Name:</strong> A unique identifier for the tool.</li>
<li><strong>Description:</strong> A human-readable explanation of what the tool does.</li>
<li><strong>Parameters:</strong> A schema defining the inputs the tool expects, usually in JSON Schema format.</li>
<li><strong>Return Value:</strong> The type and structure of data the tool returns.</li>
<li><strong>Handler:</strong> The function that implements the tool's functionality.</li>
</ul>
<p style="margin-top: 0.5rem;">
Examples of tools include "readFile" for accessing file contents, "executeQuery" for running database queries, or "getWeather" for retrieving weather information.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can MCP connect to remote services and APIs?</div>
<div class="faq-answer">
<p>
Yes, MCP can connect to remote services and APIs through MCP servers that implement the necessary integrations. For example, an MCP server could connect to a weather API, a database service, or a content management system. The server handles the communication with the remote service and exposes the functionality to MCP clients through a standardized interface.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What types of data can MCP servers provide?</div>
<div class="faq-answer">
<p>
MCP servers can provide various types of data, including:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>Text content (documents, emails, messages)</li>
<li>Structured data (database records, JSON objects)</li>
<li>Binary data (images, audio, video)</li>
<li>Metadata (file information, user details)</li>
<li>System information (operating system details, environment variables)</li>
</ul>
<p style="margin-top: 0.5rem;">
The protocol is flexible and can handle different data formats, allowing AI models to work with diverse information types.
</p>
</div>
</div>
</section>
<section id="implementation" class="faq-category">
<h2>Implementation Questions</h2>
<div class="faq-item">
<div class="faq-question">How do I get started with MCP?</div>
<div class="faq-answer">
<p>
To get started with MCP, follow these steps:
</p>
<ol style="margin-left: 2rem; margin-top: 0.5rem;">
<li>Install the appropriate MCP SDK for your programming language.</li>
<li>For client development, learn how to connect to existing MCP servers and use their tools.</li>
<li>For server development, understand how to define tools and implement their functionality.</li>
<li>Explore the official documentation and examples to understand MCP concepts and best practices.</li>
</ol>
<p style="margin-top: 0.5rem;">
Our <a href="getting-started.html">Getting Started guide</a> provides detailed instructions and code examples to help you begin working with MCP.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I use existing MCP servers instead of building my own?</div>
<div class="faq-answer">
<p>
Yes, you can use existing MCP servers instead of building your own. The MCP ecosystem includes reference implementations of servers for common use cases like file system access, Git repositories, databases, and more. These servers can be easily integrated into your applications without having to implement the functionality yourself.
</p>
<p>
Check the <a href="ecosystem.html">Ecosystem page</a> for a list of available MCP servers that you can use in your projects.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How do I create a custom MCP server?</div>
<div class="faq-answer">
<p>
To create a custom MCP server, follow these general steps:
</p>
<ol style="margin-left: 2rem; margin-top: 0.5rem;">
<li>Install the MCP server SDK for your preferred programming language.</li>
<li>Define the tools your server will provide, including their names, descriptions, parameter schemas, and return types.</li>
<li>Implement the handler functions for each tool, which will execute when the tools are called.</li>
<li>Configure the server with metadata like name, description, and version.</li>
<li>Start the server and handle requests from MCP clients.</li>
</ol>
<p style="margin-top: 0.5rem;">
The <a href="getting-started.html">Getting Started guide</a> includes code examples for creating custom MCP servers in different programming languages.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How can I use MCP with Claude?</div>
<div class="faq-answer">
<p>
You can use MCP with Claude through various interfaces:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Claude Desktop:</strong> Claude Desktop provides a user-friendly interface for connecting Claude to MCP servers. You can connect to MCP servers through the application's UI and then interact with Claude naturally.
</li>
<li>
<strong>Claude API:</strong> For programmatic access, you can use the Claude API with MCP. You'll need to set up an MCP client, connect to the desired servers, and then pass the available tools to Claude through the API.
</li>
<li>
<strong>Claude for Work:</strong> Enterprise customers using Claude for Work can connect to MCP servers and use them across their organization.
</li>
</ul>
<p style="margin-top: 0.5rem;">
The <a href="getting-started.html">Getting Started guide</a> includes specific instructions for using MCP with Claude.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Do I need to modify my AI model to use MCP?</div>
<div class="faq-answer">
<p>
No, you don't need to modify the AI model itself to use MCP. The MCP client handles the communication with MCP servers and provides the retrieved information to the AI model through its standard interfaces (like API calls or application integrations).
</p>
<p>
For hosted models like Claude, the model provider (e.g., Anthropic) has already implemented the necessary integrations to work with MCP. For open-source models, you would typically use an AI framework or library that supports tool usage and provide the MCP tools through that interface.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What are some common challenges when implementing MCP?</div>
<div class="faq-answer">
<p>
Common challenges when implementing MCP include:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Tool Design:</strong> Creating tools with clear descriptions and well-structured parameter schemas that AI models can understand and use effectively.
</li>
<li>
<strong>Error Handling:</strong> Implementing robust error handling to provide informative error messages when tools fail.
</li>
<li>
<strong>Security Considerations:</strong> Ensuring that MCP servers only expose the intended functionality and don't allow unauthorized access to sensitive data.
</li>
<li>
<strong>Performance Optimization:</strong> Optimizing data transfer and caching strategies to minimize latency in MCP interactions.
</li>
<li>
<strong>Cross-Language Compatibility:</strong> Ensuring compatibility when working with MCP implementations in different programming languages.
</li>
</ul>
<p style="margin-top: 0.5rem;">
The <a href="getting-started.html">Getting Started guide</a> includes best practices for addressing these challenges.
</p>
</div>
</div>
</section>
<section id="security" class="faq-category">
<h2>Security and Privacy</h2>
<div class="faq-item">
<div class="faq-question">Is MCP secure?</div>
<div class="faq-answer">
<p>
MCP was designed with security as a fundamental consideration. Key security features include:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Server-Controlled Access:</strong> MCP servers maintain control over their resources, determining what data is accessible to clients.
</li>
<li>
<strong>No API Key Sharing:</strong> There's no need to share API keys with LLM providers, as the MCP server handles authentication with external services.
</li>
<li>
<strong>Clear System Boundaries:</strong> The client-server architecture establishes clear boundaries between systems, limiting exposure of sensitive information.
</li>
<li>
<strong>Local Processing:</strong> For sensitive operations, MCP can use local stdio servers to ensure data doesn't leave the user's machine.
</li>
</ul>
<p style="margin-top: 0.5rem;">
While MCP provides these security features, the overall security of an MCP implementation depends on how it's configured and deployed. Developers should follow security best practices when implementing MCP servers and clients.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Does using MCP expose my data to third parties?</div>
<div class="faq-answer">
<p>
MCP itself doesn't inherently expose your data to third parties. The protocol is designed to keep data within your control:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Local Processing:</strong> When using stdio servers, data is processed locally on your machine and doesn't leave your environment.
</li>
<li>
<strong>Server Control:</strong> MCP servers control what data is accessible and can implement access controls to restrict what information is shared.
</li>
<li>
<strong>No API Key Sharing:</strong> MCP doesn't require sharing API keys with AI providers, keeping authentication credentials within your infrastructure.
</li>
</ul>
<p style="margin-top: 0.5rem;">
However, when using MCP with AI models, the data that's provided to the model may be processed according to the AI provider's privacy policy. It's important to understand the data handling practices of the AI services you're using with MCP.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I restrict what data my MCP server exposes?</div>
<div class="faq-answer">
<p>
Yes, you can restrict what data your MCP server exposes. As the developer of an MCP server, you have full control over what tools and data are available to clients. You can implement access controls, permissions, and validation to ensure that only authorized clients can access specific data or functionality.
</p>
<p>
For example, you could:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>Limit file access to specific directories</li>
<li>Restrict database queries to read-only operations or specific tables</li>
<li>Implement user authentication and authorization for sensitive operations</li>
<li>Validate and sanitize inputs to prevent security vulnerabilities</li>
</ul>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How does MCP handle sensitive information like API keys?</div>
<div class="faq-answer">
<p>
MCP is designed to keep sensitive information like API keys within your infrastructure, rather than sharing them with AI providers or third parties. When an MCP server needs to authenticate with an external service, it handles that authentication internally using credentials that you provide when setting up the server.
</p>
<p>
For example, if you're creating an MCP server that connects to a database, you would configure the server with the database credentials, but those credentials wouldn't be exposed to the MCP client or the AI model. The server would handle authentication with the database and only expose the authorized functionality through the MCP interface.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Are there best practices for securing MCP implementations?</div>
<div class="faq-answer">
<p>
Yes, here are some best practices for securing MCP implementations:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Principle of Least Privilege:</strong> Design MCP servers to expose only the minimum functionality and data access required for the application.
</li>
<li>
<strong>Input Validation:</strong> Implement thorough validation of tool parameters to prevent injection attacks and other security vulnerabilities.
</li>
<li>
<strong>Access Controls:</strong> Implement authentication and authorization mechanisms for MCP servers, especially when using HTTP/SSE transport.
</li>
<li>
<strong>Secure Credential Storage:</strong> Store API keys, passwords, and other sensitive information securely using appropriate encryption and secret management.
</li>
<li>
<strong>Regular Security Audits:</strong> Regularly review your MCP implementations for potential security issues and update them as needed.
</li>
<li>
<strong>Use HTTPS:</strong> When using HTTP/SSE transport, ensure that connections are secured with HTTPS to protect data in transit.
</li>
<li>
<strong>Logging and Monitoring:</strong> Implement comprehensive logging and monitoring for MCP servers to detect and respond to potential security incidents.
</li>
</ul>
</div>
</div>
</section>
<section id="ecosystem" class="faq-category">
<h2>Ecosystem and Community</h2>
<div class="faq-item">
<div class="faq-question">What MCP servers are available?</div>
<div class="faq-answer">
<p>
The MCP ecosystem includes a variety of servers for different data sources and tools, including:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li><strong>Filesystem Server:</strong> For accessing local files and directories</li>
<li><strong>Git Server:</strong> For interacting with Git repositories</li>
<li><strong>Postgres Server:</strong> For querying PostgreSQL databases</li>
<li><strong>Google Drive Server:</strong> For accessing files in Google Drive</li>
<li><strong>Slack Server:</strong> For interacting with Slack workspaces</li>
<li><strong>GitHub Server:</strong> For working with GitHub repositories, issues, and pull requests</li>
<li><strong>Puppeteer Server:</strong> For web browsing and automation</li>
<li><strong>Browser Extension Server:</strong> For interacting with web browsers</li>
</ul>
<p style="margin-top: 0.5rem;">
The community continues to develop additional servers for various data sources and tools. Check the <a href="ecosystem.html">Ecosystem page</a> for an up-to-date list of available MCP servers.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Who uses MCP?</div>
<div class="faq-answer">
<p>
MCP is used by a diverse range of organizations and individuals, including:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>AI Developers:</strong> Building AI applications that need to access external data and tools
</li>
<li>
<strong>Enterprise Organizations:</strong> Connecting AI systems to internal data sources and tools
</li>
<li>
<strong>Tool Providers:</strong> Exposing their tools and data to AI models through a standardized interface
</li>
<li>
<strong>Individual Users:</strong> Using Claude Desktop and other MCP-compatible applications to connect AI models to their local files and data
</li>
</ul>
<p style="margin-top: 0.5rem;">
Early adopters of MCP include companies like Block (Square), Apollo, Zed, Replit, Codeium, and Sourcegraph, who have integrated MCP into their platforms to enhance AI capabilities.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How can I contribute to MCP?</div>
<div class="faq-answer">
<p>
There are several ways to contribute to the MCP ecosystem:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Develop MCP Servers:</strong> Create new MCP servers for data sources or tools that aren't yet supported
</li>
<li>
<strong>Improve SDKs:</strong> Contribute to the official MCP SDKs by adding features, fixing bugs, or improving documentation
</li>
<li>
<strong>Share Examples:</strong> Create and share examples of MCP usage to help others learn and understand the protocol
</li>
<li>
<strong>Join Discussions:</strong> Participate in community forums to share ideas, ask questions, and collaborate with other developers
</li>
<li>
<strong>Report Issues:</strong> Help improve MCP by reporting issues and suggesting enhancements
</li>
</ul>
<p style="margin-top: 0.5rem;">
The MCP project is open source and welcomes contributions from the community. Visit the <a href="https://github.com/modelcontextprotocol" target="_blank">MCP GitHub organization</a> to learn more about contributing.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Where can I find MCP resources and documentation?</div>
<div class="faq-answer">
<p>
MCP resources and documentation are available from several sources:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Official Documentation:</strong> <a href="https://modelcontextprotocol.io" target="_blank">modelcontextprotocol.io</a> provides comprehensive guides, references, and tutorials
</li>
<li>
<strong>GitHub Repositories:</strong> <a href="https://github.com/modelcontextprotocol" target="_blank">github.com/modelcontextprotocol</a> contains the source code for MCP SDKs, servers, and examples
</li>
<li>
<strong>Anthropic Documentation:</strong> <a href="https://docs.anthropic.com/en/docs/agents-and-tools/mcp" target="_blank">docs.anthropic.com</a> includes information on using MCP with Claude
</li>
<li>
<strong>Community Forums:</strong> The <a href="https://github.com/modelcontextprotocol/discussions" target="_blank">MCP Discussions</a> on GitHub provide a place to ask questions and share ideas
</li>
<li>
<strong>This Website:</strong> Our <a href="index.html">MCP Hub</a> provides informational resources about MCP
</li>
</ul>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What's the future roadmap for MCP?</div>
<div class="faq-answer">
<p>
The MCP roadmap includes several exciting developments:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Remote MCP Servers:</strong> Support for remote MCP servers with enterprise-grade authentication, enabling broader deployment options
</li>
<li>
<strong>Enhanced Security Features:</strong> Additional security features to protect sensitive data and ensure secure communication between clients and servers
</li>
<li>
<strong>Broader Language Support:</strong> SDKs for additional programming languages to make MCP accessible to more developers
</li>
<li>
<strong>Integration with AI Platforms:</strong> Deeper integration with AI platforms and frameworks to streamline the use of MCP in AI applications
</li>
<li>
<strong>Community-Driven Standards:</strong> Evolution of the MCP specification based on community feedback and real-world usage
</li>
</ul>
<p style="margin-top: 0.5rem;">
As an open protocol, MCP's evolution will be guided by the needs of the community and the broader AI ecosystem. The goal is to establish MCP as a foundational standard for AI integration, similar to how HTTP became the foundation for web communication.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How can I stay updated on MCP developments?</div>
<div class="faq-answer">
<p>
To stay updated on MCP developments, you can:
</p>
<ul style="margin-left: 2rem; margin-top: 0.5rem;">
<li>
<strong>Follow the GitHub Repositories:</strong> Watch or star the <a href="https://github.com/modelcontextprotocol" target="_blank">MCP GitHub repositories</a> to receive notifications about updates
</li>
<li>
<strong>Join the Community Forums:</strong> Participate in <a href="https://github.com/modelcontextprotocol/discussions" target="_blank">MCP Discussions</a> on GitHub to connect with other developers
</li>
<li>
<strong>Subscribe to Anthropic Updates:</strong> Follow <a href="https://www.anthropic.com/news" target="_blank">Anthropic's news</a> for announcements related to MCP
</li>
<li>
<strong>Check Documentation Regularly:</strong> Visit the <a href="https://modelcontextprotocol.io" target="_blank">official MCP documentation</a> for the latest information
</li>
</ul>
</div>
</div>
</section>
<section>
<h2>Still Have Questions?</h2>
<p>
If you have questions that aren't answered here, you can:
</p>
<ul style="margin-left: 2rem; margin-bottom: 2rem;">
<li>
<strong>Join the Community Discussions:</strong> Ask questions and engage with other MCP developers in the <a href="https://github.com/modelcontextprotocol/discussions" target="_blank">MCP Discussions</a> on GitHub.
</li>
<li>
<strong>Check the Official Documentation:</strong> Visit the <a href="https://modelcontextprotocol.io" target="_blank">official MCP documentation</a> for comprehensive information about the protocol.
</li>
<li>
<strong>Explore the GitHub Repositories:</strong> Browse the <a href="https://github.com/modelcontextprotocol" target="_blank">MCP GitHub repositories</a> for code examples, issues, and discussions.
</li>
</ul>
</section>
</main>
<footer>
<div class="container footer-container">
<div>
<h4>MCP Resources</h4>
<ul>
<li><a href="https://modelcontextprotocol.io" target="_blank">Official Documentation</a></li>
<li><a href="https://github.com/modelcontextprotocol" target="_blank">GitHub Repository</a></li>
<li><a href="https://www.anthropic.com/news/model-context-protocol" target="_blank">Anthropic MCP Announcement</a></li>
</ul>
</div>
<div>
<h4>Learn More</h4>
<ul>
<li><a href="about.html">About MCP</a></li>
<li><a href="architecture.html">Architecture</a></li>
<li><a href="benefits.html">Benefits</a></li>
<li><a href="ecosystem.html">Ecosystem</a></li>
</ul>
</div>
<div>
<h4>Community</h4>
<ul>
<li><a href="https://github.com/modelcontextprotocol/discussions" target="_blank">Discussions</a></li>
<li><a href="https://github.com/modelcontextprotocol/community-servers" target="_blank">Community Servers</a></li>
</ul>
</div>
</div>
<div class="copyright container">
<p>&copy; 2025 MCP Information Hub. Model Context Protocol is an open source project developed by Anthropic, PBC.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>