Drop the Streamable HTTP transport and direct express dependency so the server has no network listener and cannot be reached from web chat — matches the desktop-only use case. Update README/.env.example accordingly. (express remains only as a transitive dep of the MCP SDK; unused.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
388 B
JSON
18 lines
388 B
JSON
{
|
|
"name": "sharepoint-lists-mcp",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "MCP server for Microsoft SharePoint Lists (app-only Microsoft Graph auth)",
|
|
"bin": {
|
|
"sharepoint-lists-mcp": "index.mjs"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
"zod": "^3.23.8"
|
|
}
|
|
}
|