@loguro/mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +121 -0
  3. package/dist/index.js +19776 -0
  4. package/package.json +50 -0
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@loguro/mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Loguro — query logs from Claude Code, Cursor, and other MCP-compatible AI tools. Reuses the CLI's saved auth (zero config).",
5
+ "keywords": [
6
+ "loguro",
7
+ "logs",
8
+ "logging",
9
+ "mcp",
10
+ "model-context-protocol",
11
+ "ai",
12
+ "claude",
13
+ "cursor",
14
+ "observability",
15
+ "monitoring"
16
+ ],
17
+ "homepage": "https://logu.ro",
18
+ "bugs": {
19
+ "email": "support@logu.ro"
20
+ },
21
+ "author": "Sebastian Pavel <sebastian@logu.ro>",
22
+ "license": "MIT",
23
+ "type": "module",
24
+ "bin": {
25
+ "loguro-mcp": "./dist/index.js"
26
+ },
27
+ "scripts": {
28
+ "build": "bun build src/index.ts --outdir dist --target node --format esm --banner '#!/usr/bin/env node' && chmod +x dist/index.js",
29
+ "dev": "bun src/index.ts",
30
+ "prepublishOnly": "bun run build"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "LICENSE"
36
+ ],
37
+ "dependencies": {
38
+ "@modelcontextprotocol/sdk": "^1.11.0",
39
+ "zod": "^3.24.0"
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^25.6.2"
43
+ },
44
+ "engines": {
45
+ "node": ">=18"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
49
+ }
50
+ }