Skip to main content
Glama

SharePoint

ms_sharepoint
Read-onlyIdempotent

Search SharePoint sites, list a site's lists, or browse list items. Provide site_id to see lists, or site_id and list_id to browse items.

Instructions

Search SharePoint sites, list site lists, or browse list items. Without parameters, searches all accessible sites. Provide site_id to see its lists, or site_id + list_id to browse items.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoMax results to return (1-50, default 10)
searchNoSearch query for finding sites (default '*' for all sites)
list_idNoList ID (requires site_id) to browse list items with expanded fields
site_idNoSite ID to list its lists, or combined with list_id to browse items

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint, so the safety profile is fully covered. The description usefully documents mode-dependent behavior and the default '*' search, but says nothing about result ordering, pagination, or permissions beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tightly written sentences with no filler, and the primary scope statement is front-loaded before the parameter-driven modes.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only, four-parameter tool with no output schema, the mode routing and site/list hierarchy are adequately explained. Minor gaps remain around result volume and pagination behavior, but nothing blocks correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all four parameters are already documented in the schema, establishing a baseline of 3. The description reinforces the site_id/list_id dependency, which the schema also states, but adds no new syntax or format detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names three concrete operations (search sites, list lists, browse items) against a specific resource, so the agent knows exactly what the tool does. It does not differentiate itself from overlapping siblings such as ms_search or ms_files, which keeps it short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit mode-selection guidance: no parameters searches all sites, site_id lists a site's lists, and site_id + list_id browses items. This is clear conditional routing, though it never names an alternative tool for the search case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.