UNPKG
@turbot/tailpipe-mcp
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
Tailpipe MCP server to query cloud and security logs using AI.
github.com/turbot/tailpipe-mcp
@turbot/tailpipe-mcp
/
dist
/
types
/
resource.d.ts
15 lines
(14 loc)
•
342 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
DatabaseService
}
from
"../services/database.js"
;
export
interface
Resource
{
uri
:
string
;
name
:
string
;
type
:
string
;
description
:
string
;
handler
:
(
db
:
DatabaseService
) =>
Promise
<{
contents
:
Array
<{
uri
:
string
;
mimeType
:
string
;
text
:
string
; }>; }>; }