Proplist MCP Hello World
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Proplist MCP Hello Worldlist worksheets in the SharePoint workbook"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Proplist MCP Hello World
Minimal FastMCP server that proves this integration path:
MCP Client -> FastMCP Server -> Microsoft Graph -> SharePoint Excel WorkbookThe server exposes one MCP tool, list_worksheets, which returns worksheet names, worksheet IDs, and visibility states from an existing Excel workbook stored in SharePoint.
This milestone intentionally does not create workbook sessions, read cell ranges, parse natural language, or interpret proposal data.
Project Tree
proplist-mcp-helloworld/
├── server.py
├── pyproject.toml
├── .env.example
├── .gitignore
└── README.mdRelated MCP server: MCP for Microsoft To Do
Configuration
Create a local .env file from .env.example:
cp .env.example .envSet every value:
TENANT_ID=...
CLIENT_ID=...
CLIENT_SECRET=...
DRIVE_ID=...
ITEM_ID=...TENANT_ID: Microsoft Entra tenant identifier.CLIENT_ID: application registration client identifier.CLIENT_SECRET: application registration client secret.DRIVE_ID: Microsoft Graph drive identifier containing the workbook.ITEM_ID: Microsoft Graph item identifier for the workbook.
Do not commit .env. It is excluded by .gitignore.
Microsoft Graph Permission
The app registration must have this Microsoft Graph application permission:
Files.Read.AllTenant admin consent must be granted outside this code. A 403 Forbidden response usually means the app can authenticate but does not have the required application permission or admin consent.
Install And Validate
uv sync
uv run python -m py_compile server.pyYou can start the stdio server with either command:
uv run server.py
uv run proplist-mcpTo inspect the MCP server:
npx @modelcontextprotocol/inspector uv run server.pyThen call the list_worksheets tool in the Inspector.
Expected Tool Output
When the credentials and workbook identifiers are valid, the tool returns Markdown:
## Worksheets
| Name | Worksheet ID | Visibility |
|---|---|---|
| Proposals | {...} | Visible |
| Lookup | {...} | Hidden |Do not treat this sample as proof that your workbook is reachable. The integration is live only when the tool returns real worksheet metadata from your configured workbook.
Risks And Troubleshooting
Risk | Treatment |
Missing Graph permission | Add Microsoft Graph |
Incorrect | The tool returns a |
Expired client secret | Replace |
Secret leakage | Keep |
Graph throttling | The tool surfaces |
Untested credentials |
|
Known Scope Limits
Uses OAuth 2.0 client credentials only.
Uses Microsoft Graph app-only access only.
Does not use delegated, interactive browser, device-code, or username/password authentication.
Does not call
workbook/createSession.Does not read workbook ranges or tables.
Does not add storage, LLM calls, LangChain, LangGraph, agents, web UI, Docker, CI/CD, Key Vault, or telemetry.
Available Tools
1 toollist_worksheetsA
List worksheet names, IDs, and visibility states for the configured workbook.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description does not disclose any behavioral traits such as whether the operation is read-only (though implied), whether it might be expensive, or what error conditions (e.g., no workbook configured) may arise. Annotations are absent, so the description bears full responsibility for transparency but fails to provide meaningful detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 10 words, with no filler or redundancy. It is front-loaded with the verb and immediately lists the output fields, making it easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there are no parameters and an output schema exists (though not shown), the description is minimally adequate. However, it does not explain the preconditions (e.g., the need for a configured workbook) or any potential side effects, leaving the agent without full context for safe usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema description coverage is 100% (trivially). The description adds value by naming the specific fields returned (names, IDs, visibility states), which goes beyond the empty schema. This is helpful context for an agent using the tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the verb 'List' and the exact resources ('worksheet names, IDs, and visibility states') that the tool retrieves. Although there are no sibling tools to differentiate from, the description is precise and leaves no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives (none exist), nor are there prerequisites or recommendations about the configured workbook. The description implies a simple read operation but lacks context such as that the workbook must be loaded or configured first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v0.1.0- First observed
list_worksheets
TDQS
With only one tool, there is no possibility of confusion or overlap; its purpose is trivially distinct.
The single tool uses a clear and conventional snake_case verb_noun pattern, so consistency is perfect by default.
One tool is borderline thin for most use cases, but for a 'Hello World' demo it may be acceptable; it fits the lower end of the typical 1-2 tool range.
The server only provides a list operation for worksheets, missing any create, update, or delete functionality, which represents a significant gap for worksheet management.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Streamable HTTP MCP server for Google Calendar and Sheets with OAuth login.
A simple MCP server built with FastMCP and python
OAuth-protected, read-only-by-default MCP server for provenance-labeled QuillCaddie project memory.
MCP server for Codat — companies, connections, invoices, bills and financial statements.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP Server for use with msgraph calls to mail, calendar, and files16MIT
- AlicenseBqualityDmaintenanceMCP server for Microsoft To Do via Microsoft Graph. MSAL device code flow, no client secret needed.281579MIT
- FlicenseNot gradedqualityAmaintenanceMCP server that integrates with OneDrive and Excel Workbooks via Microsoft Graph API for creating and modifying worksheets.-
- FlicenseNot gradedqualityCmaintenanceMCP server that exposes Google Sheets as read-only resources, providing static and templated URI access to sheet data as CSV.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ksengineerspc/kse-proplist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server