mcp details skills
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
# Ecosystem and Tooling
|
||||
|
||||
Use this page for MCP client setup, operational tools, and integration references.
|
||||
|
||||
## VS Code and Copilot MCP Integration
|
||||
|
||||
!!! info "VS Code MCP docs"
|
||||
- [VS Code MCP servers overview](https://code.visualstudio.com/docs/agent-customization/mcp-servers)
|
||||
- [VS Code MCP configuration reference](https://code.visualstudio.com/docs/agents/reference/mcp-configuration)
|
||||
- [VS Code Copilot customization overview](https://code.visualstudio.com/docs/copilot/customization/overview)
|
||||
|
||||
## Debugging and Inspection
|
||||
|
||||
!!! info "Inspector and diagnostics"
|
||||
- [MCP inspector repository](https://github.com/modelcontextprotocol/inspector)
|
||||
- [MCP protocol repository issues](https://github.com/modelcontextprotocol/spec/issues)
|
||||
- [Python logging configuration docs](https://docs.python.org/3/library/logging.config.html)
|
||||
|
||||
## Runtime and API Framework References
|
||||
|
||||
!!! info "Runtime references"
|
||||
- [FastAPI documentation](https://fastapi.tiangolo.com/)
|
||||
- [Uvicorn settings](https://www.uvicorn.org/settings/)
|
||||
- [AnyIO documentation](https://anyio.readthedocs.io/en/stable/)
|
||||
|
||||
## Notes
|
||||
|
||||
- Use these links when tasks include IDE wiring, MCP server runtime setup, or production operations.
|
||||
- Keep protocol and SDK references separate to avoid overloading implementation prompts.
|
||||
@@ -0,0 +1,32 @@
|
||||
# MCP Protocol and Specification
|
||||
|
||||
Use this page for authoritative links about MCP concepts, protocol shape, and official specification assets.
|
||||
|
||||
## Official Documentation
|
||||
|
||||
!!! info "MCP docs"
|
||||
- [MCP introduction](https://modelcontextprotocol.io/docs/getting-started/intro)
|
||||
- [Architecture overview](https://modelcontextprotocol.io/docs/learn/architecture)
|
||||
- [Server concepts](https://modelcontextprotocol.io/docs/learn/server-concepts)
|
||||
- [Client concepts](https://modelcontextprotocol.io/docs/learn/client-concepts)
|
||||
- [Security overview](https://modelcontextprotocol.io/docs/learn/security-overview)
|
||||
|
||||
## Protocol and Schema Sources
|
||||
|
||||
!!! info "Specification repositories"
|
||||
- [MCP specification repository](https://github.com/modelcontextprotocol/spec)
|
||||
- [Specification schema directory](https://github.com/modelcontextprotocol/spec/tree/main/schema)
|
||||
- [Specification issues and proposals](https://github.com/modelcontextprotocol/spec/issues)
|
||||
|
||||
## Core Capability References
|
||||
|
||||
!!! info "Capability details"
|
||||
- [Resources concept docs](https://modelcontextprotocol.io/docs/learn/server-concepts#resources)
|
||||
- [Tools concept docs](https://modelcontextprotocol.io/docs/learn/server-concepts#tools)
|
||||
- [Prompt objects concept docs](https://modelcontextprotocol.io/docs/learn/server-concepts#prompts)
|
||||
- [Sampling concept docs](https://modelcontextprotocol.io/docs/learn/client-concepts)
|
||||
|
||||
## Notes
|
||||
|
||||
- Prefer these links when the user asks about protocol correctness, transport semantics, capability naming, or compatibility.
|
||||
- For implementation-level examples, use [sdk-and-fastmcp.md](./sdk-and-fastmcp.md).
|
||||
@@ -0,0 +1,31 @@
|
||||
# SDK and FastMCP
|
||||
|
||||
Use this page for implementation-oriented links across MCP SDKs and FastMCP.
|
||||
|
||||
## MCP SDKs
|
||||
|
||||
!!! info "SDK sources"
|
||||
- [Python SDK repository](https://github.com/modelcontextprotocol/python-sdk)
|
||||
- [TypeScript SDK repository](https://github.com/modelcontextprotocol/typescript-sdk)
|
||||
- [Python SDK documentation](https://modelcontextprotocol.github.io/python-sdk/)
|
||||
|
||||
## FastMCP
|
||||
|
||||
!!! info "FastMCP sources"
|
||||
- [FastMCP project documentation](https://gofastmcp.com/)
|
||||
- [FastMCP GitHub repository](https://github.com/jlowin/fastmcp)
|
||||
- [FastMCP examples directory](https://github.com/jlowin/fastmcp/tree/main/examples)
|
||||
- [FastMCP PyPI package](https://pypi.org/project/fastmcp/)
|
||||
|
||||
## Server Implementation Patterns
|
||||
|
||||
!!! info "Implementation references"
|
||||
- [MCP server concepts](https://modelcontextprotocol.io/docs/learn/server-concepts)
|
||||
- [MCP architecture patterns](https://modelcontextprotocol.io/docs/learn/architecture)
|
||||
- [Python packaging and resources](https://docs.python.org/3/library/importlib.resources.html)
|
||||
|
||||
## Notes
|
||||
|
||||
- Prefer official SDK repositories for API shape and compatibility checks.
|
||||
- Use FastMCP references for rapid server scaffolding and implementation examples.
|
||||
- For protocol-first questions, start from [mcp-protocol-and-spec.md](./mcp-protocol-and-spec.md).
|
||||
Reference in New Issue
Block a user