ai-docs/docs/ai/crossplatform/mcp-overview.md
Matt Bruce 3586f39e8e More refactoring
Signed-off-by: Matt Bruce <matt.bruce1@toyota.com>
2026-02-22 15:02:58 -06:00

42 lines
1.4 KiB
Markdown

# MCP (Model Context Protocol) - Cross-Platform Overview
You are here: [AI Docs Home](../index.md) > [Cross-Platform AI Usage](cross-platform.md) > MCP Overview
## Contents
- What MCP Is
- How MCP Helps In A Workflow
- Common MCP Use Cases
- Example Workflow
- Example Prompt
- Where To Learn More
MCP is an open standard that lets tools and agents interact with real systems. In plain language, MCP lets the assistant "do" things (like run builds or fetch logs) instead of just talking about them.
## How MCP Helps In A Workflow
Think of MCP as a set of safe, structured buttons the assistant can press. You ask a question, the assistant calls a tool, and it returns a clear result.
## Common MCP Use Cases (All Platforms)
- Run builds and tests
- Fetch logs or diagnostics
- Query project configuration
- Generate previews or reports
## Example Workflow
1. Ask the assistant to run a build.
2. The MCP tool runs it and returns the result.
3. You ask for a summary and next steps.
## Example Prompt
Example prompt:
```text
Use the build MCP tool to run the build and summarize any errors.
```
## Where To Learn More
- iOS examples: see [iOS Setup](../ios/ios.md)
- Android examples: see [Android Setup](../android/android.md)
## Next Steps
- Return to [Cross-Platform AI Usage](cross-platform.md).
- Continue to [Plan-First Workflow](plan-first-workflow.md) for safer multi-step changes.