Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

RDL MCP Server

PYPI · RDL-MCP · SCANNED AUG 3

Edit SSRS reports using AI - simple tools to read and modify RDL files

Available components

−8 this week 39 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • Runs setuptools.build_meta at install time, a recognised native-build step with no shell scripting around it. View diagnostics → Pass
  • No production dependencies, so there is no dependency health to assess. View diagnostics → Pass
Provenance & Transparency44
Schema Quality & AI Usability0
  • Schema quality not yet verified: our sandbox run of this package did not complete, so we have no schema to assess.Unverified
Stability & Change Management0
  • Stability not yet verified: our sandbox run of this package did not complete, so we have no schema to compare.Unverified
Tool Coverage0
  • Tool coverage not yet verified: our sandbox run of this package did not complete, so we have no tool definitions to assess.Unverified
Capabilities0
  • Protocol version not yet verified: our sandbox run of this package did not complete, so we never saw its MCP handshake.Unverified

Unverified: 4 categories

Categories scored 0 because our sandbox run of this package has not given us the schema these checks need to read. That is a gap on our side rather than a finding about the package, and we only credit what we can confirm, so the score stands at 0 until the capture succeeds. We are working through the fleet, so this normally clears without any action from you. How we score packages →

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

pypi · rdl-mcp

# add to Claude Code
claude mcp add bethmaloney-rdl-mcp -- uvx rdl-mcp
# add to Codex CLI
codex mcp add bethmaloney-rdl-mcp -- uvx rdl-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "bethmaloney-rdl-mcp": {
      "type": "local",
      "command": [
        "uvx",
        "rdl-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add bethmaloney-rdl-mcp --command uvx --arg rdl-mcp
# ~/.hermes/config.yaml
mcp_servers:
  bethmaloney-rdl-mcp:
    command: "uvx"
    args: ["rdl-mcp"]
// mcp.json
{
  "mcpServers": {
    "bethmaloney-rdl-mcp": {
      "command": "uvx",
      "args": [
        "rdl-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +15
    • Malware scan: unverified → pass security
  • 31 Jul 26 −5
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 28 Jul 26 0
    • Tool coverage: Tool coverage not yet verified: our sandbox run of this package did not complete, so we have no tool definitions to assess. functional
    • Schema quality: Schema quality not yet verified: our sandbox run of this package did not complete, so we have no schema to assess. functional
  • 26 Jul 26 47

    First indexed and scored.

    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed pypi/[email protected]

Provenance none

Ecosystem: pypi · Outcome: none

Install scripts 1 script
Hook Tier Command
build_backend allowlisted setuptools.build_meta
Dependencies 0 packages

0 packages in the resolved dependency tree.

MCP tools — 15 exposed · ~1,068 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
add_column ~189

Add a new column to the report table at a specified position

NameTypeReqDescription
column_indexintegeryesPosition to insert column (0-based, -1 for end)
field_bindingstringyesField binding expression (e.g., '=Fields!Amount.Value')
filepathstringyesPath to the RDL file
footer_expressionstringOptional expression for footer/total row. Examples: '=Sum(Fields!Amount.Value)', '=Count(Fields!ID.Value)', 'Total:', or leave empty for blank footer
format_stringstringOptional format string (e.g., '#,0.00' for numbers or 'dd/MM/yyyy' for dates)
header_textstringyesHeader text for the column
widthstringColumn width (e.g., '1.5in', '3cm'). Defaults to '1in'

No output schema declared.

No examples provided.

add_dataset_field ~118

Add a new field to a dataset (useful when stored procedure returns new columns)

NameTypeReqDescription
data_fieldstringyesName of the column from the data source
dataset_namestringyesName of the dataset to modify
field_namestringyesName of the field (how it appears in expressions)
filepathstringyesPath to the RDL file
type_namestringyesData type (e.g., 'System.String', 'System.Int32', 'System.Decimal', 'System.DateTime')

No output schema declared.

No examples provided.

add_parameter ~66

Add a new report parameter

NameTypeReqDescription
data_typestringyesData type (String, Integer, DateTime, Boolean)
filepathstringyesPath to the RDL file
namestringyesParameter name
promptstringyesUser-facing prompt text

No output schema declared.

No examples provided.

describe_rdl_report ~43

Get a high-level summary of the RDL report structure including datasets, parameters, and table layout

NameTypeReqDescription
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.

get_rdl_columns ~38

Get table columns with their headers, widths, field bindings, and formatting

NameTypeReqDescription
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.

get_rdl_datasets ~116

Get all datasets in the report with their fields, queries, and stored procedures. By default returns only field counts; use field_limit to get field details.

NameTypeReqDescription
field_limitintegerNumber of fields to return per dataset: 0 = no field details (only count, default), -1 = all fields, positive number = limit to that many fields
field_patternstringOptional regex pattern to filter field names (case-insensitive)
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.

get_rdl_parameters ~37

Get all report parameters with their types, prompts, and valid values

NameTypeReqDescription
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.

remove_column ~43

Remove a column from the report table

NameTypeReqDescription
column_indexintegeryesZero-based column index to remove
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.

remove_dataset_field ~57

Remove a field from a dataset

NameTypeReqDescription
dataset_namestringyesName of the dataset to modify
field_namestringyesName of the field to remove
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.

update_column_format ~88

Update the format string for a column (e.g., date format, number format)

NameTypeReqDescription
column_indexintegeryesZero-based column index
filepathstringyesPath to the RDL file
format_stringstringyesFormat string (e.g., '#,0.00' for numbers, 'dd/MM/yyyy' for dates, 'C2' for currency)

No output schema declared.

No examples provided.

update_column_header ~56

Update a column header text in the report table

NameTypeReqDescription
filepathstringyesPath to the RDL file
new_headerstringyesNew header text
old_headerstringyesCurrent header text to find

No output schema declared.

No examples provided.

update_column_width ~66

Update a column width in the report table

NameTypeReqDescription
column_indexintegeryesZero-based column index
filepathstringyesPath to the RDL file
new_widthstringyesNew width (e.g., '2.5in', '3cm')

No output schema declared.

No examples provided.

update_parameter ~57

Update an existing report parameter

NameTypeReqDescription
default_valuestringNew default value
filepathstringyesPath to the RDL file
namestringyesParameter name
promptstringNew prompt text

No output schema declared.

No examples provided.

update_stored_procedure ~61

Update the stored procedure name/path for a dataset

NameTypeReqDescription
dataset_namestringyesName of the dataset to update
filepathstringyesPath to the RDL file
new_sprocstringyesNew stored procedure name

No output schema declared.

No examples provided.

validate_rdl ~33

Validate the RDL XML structure and report any issues

NameTypeReqDescription
filepathstringyesPath to the RDL file

No output schema declared.

No examples provided.