We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Pyda-AI/sentry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
overview.md•2.48 kB
# Cloudflare Web Chat Application
This directory contains documentation for the Cloudflare-hosted web chat application that **uses** the Sentry MCP server.
## Important: This is NOT part of MCP
The Cloudflare chat application (`packages/mcp-cloudflare`) is a **separate web application** that demonstrates how to build a chat interface using MCP. It is not part of the MCP protocol or server itself.
Think of it as:
- **MCP Server**: The backend service that provides Sentry functionality via the Model Context Protocol
- **Cloudflare Chat**: A frontend web app (like ChatGPT) that connects to and uses the MCP server
## What This Application Provides
- Web-based chat UI with OAuth authentication
- AI-powered assistant using OpenAI's GPT-4
- Integration with Sentry MCP tools via HTTP transport
- Cloudflare Workers deployment for global edge hosting
## Architecture Separation
```
┌─────────────────────────┐ ┌──────────────────────┐
│ Cloudflare Web App │ │ MCP Server │
│ (This Documentation) │ │ (Core MCP Docs) │
├─────────────────────────┤ ├──────────────────────┤
│ • React Frontend │ │ • MCP Protocol │
│ • Chat UI │ --> │ • Sentry Tools │
│ • OAuth Flow │ │ • Prompt Handlers │
│ • GPT-4 Integration │ │ • Resource Providers │
└─────────────────────────┘ └──────────────────────┘
Uses MCP via The actual MCP
HTTP Transport implementation
```
## Documentation Structure
- [Architecture](./architecture.md) - Technical architecture of the web application
- [Authentication](./authentication.md) - OAuth flow and token management
- [Chat Interface](./chat-interface.md) - UI components and features
- [Prompts Integration](./prompts-integration.md) - How the chat app uses MCP prompts
- [Deployment](./deployment.md) - Deploying to Cloudflare Workers
## Quick Links
- Live deployment: https://mcp.sentry.dev
- Package location: `packages/mcp-cloudflare`
- **For MCP Server docs**: [Core MCP Server Architecture](../architecture.mdc)