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.,@Chess MCP Server what is the weather in Tokyo?
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.
You can also use deployed servers via HTTP endpoints. For instructions, see How to Test MCP Streamable HTTP Endpoints Using cURL.
To run the MCP server using the provided configuration, follow these steps:
Install prerequisites
Ensure you have uvx installed on your system.Clone and start the server
The configuration below will start the MCP server from a GitHub repository usinguvx.
The command pulls the server code and launches themcp-serverentry point.{ "mcpServers": { "GithubHostedExample": { "command": "uvx", "args": [ "--from", "git+https://github.com/bkoseda/mcpchesssampleserver.git", "chess" ] } } }Run the server
Execute the following command in your terminal:uvx --from git+https://github.com/bkoseda/mcpserverexample.git mcp-server
This will download the MCP server from the specified GitHub repository and start it locally.
Refer to the repository's documentation for additional configuration or usage details.