MCP-S is a powerful client library that enables seamless integration with MCP services. This document provides instructions on how to configure and use the MCP client in your project.
To use MCP-S in your project, you need to configure the MCP servers in your project settings. Here's an example configuration:
{
"mcpServers": {
"MyMCP": {
"command": "npx",
"args": [
"-y",
"@mcp-s/mcp"
],
"env": {
"ORG": "<YOUR_ORG>",
"USER_ACCESS_KEY": "<YOUR_USER_ACCESS_KEY>"
}
}
}
}
The following environment variables need to be configured:
-
ORG
: Your organization identifier -
USER_ACCESS_KEY
: Your user access key for authentication -
BASE_URL
: (Optional) Custom base URL for the MCP service. If not provided, defaults tohttps://run.mcp-s.com/${ORG}
- Create or locate your project's configuration file
- Add the MCP configuration block as shown above
- Replace
<YOUR_ORG>
with your organization identifier - Replace
<YOUR_USER_ACCESS_KEY>
with your user access key - (Optional) Replace
<OPTIONAL_BASE_URL>
with your custom base URL if needed - Save the configuration file
Visit mcp-s.com for more information and documentation.
For support and additional resources, please visit our website at mcp-s.com.