Download the PHP package lucianotonet/laravel-telescope-mcp without Composer

On this page you can find all versions of the php package lucianotonet/laravel-telescope-mcp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-telescope-mcp

Latest Version on Packagist Downloads

Laravel Telescope MCP

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.

Overview

Telescope MCP translates natural-language queries into MCP operations, retrieves Telescope records, and returns concise responses. This enables developers to query logs, slow queries, HTTP requests, exceptions, jobs, and more using an AI interface.

Installation

Make sure you have Laravel Telescope properly installed and configured in your application before proceeding

  1. Add the package via Composer:

  2. Publish the configuration (optional):

  3. Update your .env (optional):

    You can now verify the installation by accessing http://localhost:8000/telescope-mcp/manifest.json in your browser

Connecting an AI Client

For Cursor (example):

  1. Open Cursor command palette (Cmd/Ctrl+Shift+P).
  2. Run View: Open MCP Settings.
  3. Add this configuration:

    Make sure the URL matches your .env configuration, combining APP_URL with TELESCOPE_MCP_PATH

  4. For HTTPS, you can omit --allow-http and NODE_TLS_REJECT_UNAUTHORIZED like this:

Usage Examples

The AI will parse the query, call the MCP endpoint, analyze results, and return a summary.

Available Tools

Tool Description Parameters
Batches Lists and analyzes batch operations id, limit, status (pending/processing/finished/failed), name
Cache Monitors cache operations id, limit, operation (hit/miss/set/forget), key
Commands Tracks Artisan command executions id, limit, command, status (success/error)
Dumps Records var_dump and dd() calls id, limit, file, line
Events Monitors event dispatches id, limit, name
Exceptions Tracks application errors id, limit
Gates Records authorization checks id, limit, ability, result (allowed/denied)
HTTP Client Monitors outgoing HTTP requests id, limit, method, status, url
Jobs Tracks queued job executions id, limit, status (pending/processed/failed), queue
Logs Records application logs id, limit, level, message
Mail Monitors email operations id, limit, to, subject
Models Tracks Eloquent model operations id, limit, action (created/updated/deleted), model
Notifications Records notification dispatches id, limit, channel, status (sent/failed)
Queries Monitors database queries id, limit, slow (boolean)
Redis Tracks Redis operations id, limit, command
Requests Records incoming HTTP requests id, limit, method, status, path
Schedule Monitors scheduled task executions id, limit
Views Records view renders id, limit
Prune Removes old Telescope entries hours

Configuration

Advanced

See config/telescope-mcp.php for:

Contributing

Contributions are welcome. Please submit issues or pull requests following our CONTRIBUTING.md guidelines.

License

Licensed under MIT. See LICENSE for details.


All versions of laravel-telescope-mcp with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^10.0|^11.0|^12.0
laravel/telescope Version ^4.0|^5.0|^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lucianotonet/laravel-telescope-mcp contains the following files

Loading the files please wait ....