-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinspector.py
executable file
·148 lines (146 loc) · 4.19 KB
/
inspector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/env python3
"""
MCP Tool Inspector
-----------------
A simple script to list tools in a format Smithery can understand
"""
import json
# Define the tools manually
tools = [
{
"name": "list_bases",
"description": "List all accessible Airtable bases",
"parameters": {
"type": "object",
"properties": {},
"required": []
},
"returns": {
"type": "string"
}
},
{
"name": "list_tables",
"description": "List all tables in the specified base or the default base",
"parameters": {
"type": "object",
"properties": {
"base_id": {
"type": "string",
"description": "Optional base ID to use instead of the default"
}
},
"required": []
},
"returns": {
"type": "string"
}
},
{
"name": "list_records",
"description": "List records from a table with optional filtering",
"parameters": {
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table to list records from"
},
"max_records": {
"type": "integer",
"description": "Maximum number of records to return (default: 100)"
},
"filter_formula": {
"type": "string",
"description": "Optional Airtable formula to filter records"
}
},
"required": ["table_name"]
},
"returns": {
"type": "string"
}
},
{
"name": "get_record",
"description": "Get a specific record from a table",
"parameters": {
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table"
},
"record_id": {
"type": "string",
"description": "ID of the record to retrieve"
}
},
"required": ["table_name", "record_id"]
},
"returns": {
"type": "string"
}
},
{
"name": "create_records",
"description": "Create records in a table from JSON string",
"parameters": {
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table"
},
"records_json": {
"type": "string",
"description": "JSON string containing the records to create"
}
},
"required": ["table_name", "records_json"]
},
"returns": {
"type": "string"
}
},
{
"name": "update_records",
"description": "Update records in a table from JSON string",
"parameters": {
"type": "object",
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table"
},
"records_json": {
"type": "string",
"description": "JSON string containing the records to update with IDs"
}
},
"required": ["table_name", "records_json"]
},
"returns": {
"type": "string"
}
},
{
"name": "set_base_id",
"description": "Set the current Airtable base ID",
"parameters": {
"type": "object",
"properties": {
"base_id": {
"type": "string",
"description": "Base ID to set as the current base"
}
},
"required": ["base_id"]
},
"returns": {
"type": "string"
}
}
]
# Print the tools as JSON
print(json.dumps({"tools": tools}, indent=2))