Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions packages/fiori-mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,26 @@ Then, configure your MCP client to start the server with command `fiori-mcp`. He
}
```

You can create a global configuration [mcp.json](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) within Visual Studio Code:
GitHub Copilot uses the `mcp.json` file as source for it's Agent mode.
```json
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @KevinRiedelsheimer, thanks for the contribution.
What is the difference between the snippet you want to add and already existing one here?
I'm not sure if it really adds value just because what is called servers in Cline is called mcpServers in VSC.

{
"servers": {
"fiori-mcp": {
"type": "stdio",
"timeout": 600,
"command": "npx",
"args": [
"--yes",
"@sap-ux/fiori-mcp-server@latest",
"fiori-mcp"
]
}
"inputs": []
}
```


## [Rules](#rules)

The following rules help guide the LLM to use the server correctly:
Expand Down
Loading