Skip to content

Commit 0636a1a

Browse files
committed
docs(README): update tool support docs/table
Signed-off-by: TJ Hoplock <[email protected]>
1 parent d855b35 commit 0636a1a

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,31 @@ This is an MCP server to allow LLMs to interact with a running Prometheus instan
99
| --- | --- |
1010
| `alertmanagers` | Get overview of Prometheus Alertmanager discovery |
1111
| `build_info` | Get Prometheus build information |
12-
| `execute_query` | Execute an instant query against the Prometheus datasource |
12+
| `config` | Get Prometheus configuration |
13+
| `exemplars_query` | Performs a query for exemplars by the given query and time range |
1314
| `flags` | Get runtime flags |
15+
| `label_names` | Returns the unique label names present in the block in sorted order by given time range and matchers |
16+
| `label_values` | Performs a query for the values of the given label, time range and matchers |
1417
| `list_alerts` | List all active alerts |
1518
| `list_rules` | List all alerting and recording rules that are loaded |
1619
| `list_targets` | Get overview of Prometheus target discovery |
20+
| `metric_metadata` | Returns metadata about metrics currently scraped by the metric name |
21+
| `query` | Execute an instant query against the Prometheus datasource |
22+
| `range_query` | Execute a range query against the Prometheus datasource |
1723
| `runtime_info` | Get Prometheus runtime information |
24+
| `series` | Finds series by label matchers |
25+
| `targets_metadata` | Returns metadata about metrics currently scraped by the target |
1826
| `tsdb_stats` | Get usage and cardinality statistics from the TSDB |
1927
| `wal_replay_status` | Get current WAL replay status |
2028

29+
__NOTE:__ For the time being, the [TSDB Admin API endpoints](https://prometheus.io/docs/prometheus/latest/querying/api/#tsdb-admin-apis) aren't implemented. Both because of the potential for damage, as well as the fact that these endpoints are not enabled unless prometheus is started with an additional flag. Implementation requires more thought/consideration.
30+
31+
| Tool Name | Description |
32+
| --- | --- |
33+
| `clean_tombstones` | Removes the deleted data from disk and cleans up the existing tombstones |
34+
| `delete_series` | deletes data for a selection of series in a time range |
35+
| `snapshot` | creates a snapshot of all current data into snapshots/<datetime>-<rand> under the TSDB's data directory and returns the directory as response |
36+
2137
### Resources
2238

2339
_Not implemented yet_

0 commit comments

Comments
 (0)