An extension for Laravel Telescope that exposes telemetry data via the Model Context Protocol (MCP) to AI assistants (e.g., Cursor, Claude, Copilot Chat). Ideal for developers who use Telescope to inspect application metrics and require quick, precise insights.
Telescope MCP exposes all Laravel Telescope telemetry data via the Model Context Protocol (MCP), enabling AI assistants to directly access and analyze application metrics. This provides developers with instant insights into logs, slow queries, HTTP requests, exceptions, jobs, and more through natural language queries.
- PHP 8.3+
- Laravel 11 or 12
- Laravel Telescope 5.0+
Important
The HTTP MCP endpoint is not authenticated by default. If you expose it online, enable authentication first (see "Secure Streamable HTTP in IDEs").
Status: ✅ 19 MCP tools fully operational and integrated
🎉 Now powered by the official Laravel/MCP package!
- Built on Laravel's official MCP framework for better maintainability and long-term support
- Improved architecture with cleaner tool definitions using
Laravel\Mcp\Server\Tool - Enhanced schema validation with
JsonSchemabuilder - Better request handling with
Laravel\Mcp\RequestandLaravel\Mcp\Response - Full backward compatibility maintained - all 19 tools work identically
- Ready for future Laravel/MCP features (Resources, Prompts, OAuth authentication)
-
Install the package:
composer require lucianotonet/laravel-telescope-mcp --dev
-
Auto-configure your MCP client:
php artisan telescope-mcp:install
💡 Automatically detects and configures: Cursor, Claude Code, Windsurf, Cline, Gemini App, Antigravity, Codex, and OpenCode.
-
Restart your IDE/editor and start using tools!
composer require lucianotonet/laravel-telescope-mcp --devYou can use the automatic installer or configure manually.
Option A: Automatic Installation (Recommended)
php artisan telescope-mcp:installThis command will:
- Detect installed MCP clients
- Generate the correct configuration file (
mcp.json,settings.json, etc.) - Set up the server in
stdiomode
Option B: Manual Configuration Add the following to your MCP client's configuration file:
{
"mcpServers": {
"laravel-telescope": {
"command": "php",
"args": ["artisan", "telescope-mcp:server"],
"cwd": "/path/to/your/project",
"env": {
"APP_ENV": "local"
}
}
}
}Important
Antigravity users: Antigravity does not support the cwd property. You must use the absolute path to artisan in the args array and it is recommended to add "MCP_MODE": "stdio" to the env object.
Run the server manually to ensure it's working:
php artisan telescope-mcp:serverIt should run silently (logging to stderr) and wait for JSON-RPC input.
If you prefer to configure manually, add the following to your assistant's configuration file:
File: mcp.json or cline_mcp_settings.json
{
"mcpServers": {
"laravel-telescope": {
"command": "php",
"args": ["artisan", "telescope-mcp:server"],
"cwd": "/absolute/path/to/your/project",
"env": {
"APP_ENV": "local"
}
}
}
}You can configure via the ~/.claude/mcp.json file (same format as Cursor) or via command:
claude mcp add -s local -t stdio laravel-telescope php artisan telescope-mcp:serverFile: mcp_config.json (Global configuration only)
{
"mcpServers": {
"laravel-telescope": {
"command": "php",
"args": ["/absolute/path/to/your/project/artisan", "telescope-mcp:server"],
"env": {
"APP_ENV": "local",
"MCP_MODE": "stdio"
}
}
}
}OpenCode uses a different key and requires the absolute path to artisan.
File: opencode.json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"laravel-telescope": {
"type": "local",
"enabled": true,
"command": ["php", "/absolute/path/to/your/project/artisan", "telescope-mcp:server"],
"environment": {
"APP_ENV": "local"
}
}
}
}File: config.toml
[mcpServers.laravel-telescope]
command = "php"
args = ["artisan", "telescope-mcp:server"]
cwd = "/absolute/path/to/your/project"
[mcpServers.laravel-telescope.env]
APP_ENV = "local"Ensure php is in your global PATH or use the absolute path to the PHP executable. On Windows, use double backslashes \\ in JSON/TOML paths.
Ensure the AI assistant has permission to read/write in your Laravel project's storage directory, where Telescope stores the data.
If tools don't appear, check your assistant's error logs (e.g., Cursor Output > MCP). The command php artisan telescope-mcp:server should run without errors if executed manually in the terminal.
If you want to test your server from the browser using @modelcontextprotocol/inspector, use HTTP transport with your MCP endpoint URL.
npx -y @modelcontextprotocol/inspector --transport http --server-url "https://your-domain.com/telescope-mcp"If your local certificate is self-signed (common with *.test domains), disable TLS verification for Node in your current shell:
# PowerShell
$env:NODE_TLS_REJECT_UNAUTHORIZED='0'
npx -y @modelcontextprotocol/inspector --transport http --server-url "https://your-local-domain.test/telescope-mcp"Inspector uses ports 6274 (UI) and 6277 (proxy) by default. If you get "PORT IS IN USE":
# PowerShell
$env:CLIENT_PORT='6284'
$env:SERVER_PORT='6287'
npx -y @modelcontextprotocol/inspector --transport http --server-url "https://your-domain.com/telescope-mcp"If your MCP route is protected by middleware, pass headers:
npx -y @modelcontextprotocol/inspector --transport http --server-url "https://your-domain.com/telescope-mcp" --header "Authorization: Bearer YOUR_TOKEN"GET /telescope-mcpreturning405is expected.- Use
POST /telescope-mcpfor MCP JSON-RPC requests.
This package now supports built-in bearer token authentication for the HTTP MCP endpoint.
MCP_BEARER_TOKEN=replace-with-a-long-random-tokenYou can also use TELESCOPE_MCP_BEARER_TOKEN instead of MCP_BEARER_TOKEN.
Auth is automatically enabled when one of these token env vars is present.
If you prefer explicit control, set:
TELESCOPE_MCP_AUTH_ENABLED=trueGenerate a token example:
php -r "echo bin2hex(random_bytes(32)), PHP_EOL;"For IDEs that ask fields like:
NameStreamable HTTPURLBearer token env varHeaders/Headers from environment variables
Use:
Name:laravel-telescope-online(or any name)Transport:Streamable HTTPURL:https://your-domain.com/telescope-mcpBearer token env var:MCP_BEARER_TOKEN
If your IDE does not support "Bearer token env var", set headers manually:
Key:AuthorizationValue:Bearer <your-token>
If your IDE supports "headers from env variables", prefer:
Key:AuthorizationValue:Bearer ${MCP_BEARER_TOKEN}
- Local URL:
https://your-local-domain.test/telescope-mcp - Online URL:
https://your-public-domain.com/telescope-mcp
Reference: OpenAI Codex MCP docs (https://developers.openai.com/codex/mcp/).
Once connected, you can use the MCP tools directly in your AI assistant:
# List recent HTTP requests
@laravel-telescope-mcp requests --limit 5
# Details of a specific exception
@laravel-telescope-mcp exceptions --id 123456
# Find slow queries
@laravel-telescope-mcp queries --slow true --limit 10Once connected, you can use the MCP tools directly in your AI assistant:
# List recent HTTP requests
@laravel-telescope-mcp requests --limit 5
# Get details of a specific exception
@laravel-telescope-mcp exceptions --id 123456
# Find slow database queries
@laravel-telescope-mcp queries --slow true --limit 10
# Check recent logs
@laravel-telescope-mcp logs --level error --limit 5- "Show me the last 5 error logs from the application"
- "Identify SQL queries taking longer than 100ms"
- "Display all failed jobs from the last hour"
- "Summarize HTTP requests with 5xx status codes"
The AI will automatically use the appropriate MCP tools to fetch and analyze the data.
All 19 MCP tools are fully operational and provide structured responses with both human-readable text and JSON data.
| Tool | Status | Description | Key Parameters |
|---|---|---|---|
| Requests | ✅ | Records incoming HTTP requests | id, limit, method, status, path |
| Exceptions | ✅ | Tracks application errors with stack traces | id, limit |
| Queries | ✅ | Monitors database queries with performance metrics | id, limit, slow (boolean) |
| Logs | ✅ | Records application logs with filtering | id, limit, level, message |
| HTTP Client | ✅ | Monitors outgoing HTTP requests | id, limit, method, status, url |
| ✅ | Monitors email operations | id, limit, to, subject |
|
| Notifications | ✅ | Records notification dispatches | id, limit, channel, status |
| Jobs | ✅ | Tracks queued job executions | id, limit, status, queue |
| Events | ✅ | Monitors event dispatches | id, limit, name |
| Models | ✅ | Tracks Eloquent model operations | id, limit, action, model |
| Cache | ✅ | Monitors cache operations | id, limit, operation, key |
| Redis | ✅ | Tracks Redis operations | id, limit, command |
| Schedule | ✅ | Monitors scheduled task executions | id, limit |
| Views | ✅ | Records view renders | id, limit |
| Dumps | ✅ | Records var_dump and dd() calls | id, limit, file, line |
| Commands | ✅ | Tracks Artisan command executions | id, limit, command, status |
| Gates | ✅ | Records authorization checks | id, limit, ability, result |
| Batches | ✅ | Lists and analyzes batch operations | id, limit, status, name |
| Prune | ✅ | Removes old Telescope entries | hours |
- 19 MCP tools operational: All major Telescope features are now accessible via MCP
- Native Cursor integration: Tools work directly within Cursor without external commands
- Structured responses: Each tool returns both human-readable text and JSON data
- Real-time data access: Direct access to Telescope telemetry without HTTP requests
- No more cURL needed: Use MCP tools directly in your AI assistant
- Instant insights: Get application metrics through natural language
- Structured data: Both readable summaries and programmatic access
- Full Telescope coverage: Access to all major monitoring features
Each MCP tool provides:
- Human-readable output: Formatted tables and summaries
- JSON data: Structured data for programmatic processing
- MCP compliance: Standard MCP response format
- List operations: Get overviews with customizable limits
- Detail views: Drill down into specific entries by ID
- Filtering: Apply filters like status, level, time ranges
- Performance metrics: Track slow queries, failed jobs, errors
- Authentication: Use built-in bearer auth with
TELESCOPE_MCP_AUTH_ENABLED=trueandMCP_BEARER_TOKEN(orTELESCOPE_MCP_BEARER_TOKEN), or protect with Laravel middleware (auth:sanctum,auth.basic). - Endpoint Path: Customize
TELESCOPE_MCP_PATHor modify inconfig/telescope-mcp.php. - Middleware: Set
TELESCOPE_MCP_MIDDLEWAREas comma-separated list (e.g.,api,auth:sanctum). - Logging: Enable or disable internal MCP logging.
- Timeouts & Limits: Adjust request timeouts and payload limits as needed.
See config/telescope-mcp.php for:
- Custom middleware stacks
- Operation-specific settings
- Route and namespace overrides
- HTTP Requests: Monitor incoming traffic, response times, and status codes
- Database Queries: Track slow queries and optimize performance
- Application Errors: Get detailed stack traces and error context
- Job Processing: Monitor queue performance and failures
- Cache Operations: Track cache hit/miss ratios and performance
- Configurable limits: Set appropriate limits for each tool based on your needs
- Efficient queries: Tools use optimized Telescope queries for fast responses
- Memory management: Responses are formatted efficiently for MCP clients
Contributions are welcome. Please submit issues or pull requests following our CONTRIBUTING.md guidelines.
Licensed under MIT. See LICENSE for details.