You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.mdx
+18-11Lines changed: 18 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# Getting Started with @hyperweb/mcp-server
2
2
3
-
Welcome to the documentation for the Hyperweb MCP Server (`@hyperweb/mcp-server`). This server implements the Model Context Protocol (MCP) to help you use Hyperweb platform tools more effectively and easily with AI agents.
3
+
Welcome to the documentation for the Hyperweb MCP Server (`@hyperweb/mcp-server`). The Hyperweb MCP Server is a [Model Context Protocol](https://modelcontextprotocol.io/introduction) server that provides seemless integration with Web3 tools in Hyperweb Ecosystem and Cosmos Ecosystem, enabling advanced interaction capabilities with AI agents for developers.
4
4
5
-
## Overview
5
+
## Use Cases
6
6
7
7
The Agentic Tools MCP Server, also known as `@hyperweb/mcp-server`, provides a suite of functionalities focused on Cosmos SDK based chains and the broader interchain ecosystem. It allows for interactions with:
8
8
@@ -13,21 +13,24 @@ The Agentic Tools MCP Server, also known as `@hyperweb/mcp-server`, provides a s
13
13
14
14
This server aims to simplify common developer workflows and provide programmatic access to essential data and operations within the Hyperweb and Cosmos environments.
15
15
16
-
## Setup
16
+
## Prerequisites
17
17
18
-
To run the Hyperweb MCP server using npx, use the following command in your terminal:
18
+
Development:
19
19
20
-
```bash
21
-
npx -y @hyperweb/mcp-server@latest
22
-
```
20
+
- Node.js (v20 or higher)
21
+
- pnpm (v10 or higher)
22
+
23
+
MCP server use:
23
24
24
-
This command will download and run the latest version of the server.
25
+
- Any IDE or editor that supports MCP protocol, for example [Cursor](https://docs.cursor.com/context/model-context-protocol), [Windsurf](https://docs.windsurf.com/windsurf/cascade/mcp#model-context-protocol-mcp) or [Claude Desktop](https://modelcontextprotocol.io/quickstart/user)
25
26
26
27
## Usage with AI Clients (Cursor or Claude Desktop)
27
28
28
29
To integrate the Hyperweb MCP Server with AI clients like Cursor or Claude Desktop, you need to add the following configuration to your client's settings. This allows the AI client to discover and use the tools provided by this MCP server.
29
30
30
-
For more information, you can refer to the [Cursor MCP documentation](https://docs.cursor.com/context/model-context-protocol) or the [Claude Desktop MCP guide](https://modelcontextprotocol.io/quickstart/user).
31
+
We will demonstrate the usage of the Hyperweb MCP Server with Cursor/Claude Desktop in this guide.
32
+
33
+
For more information, you can refer to the [Cursor MCP documentation](https://docs.cursor.com/context/model-context-protocol), [Windsurf MCP guide](https://docs.windsurf.com/windsurf/cascade/mcp#model-context-protocol-mcp) or the [Claude Desktop MCP guide](https://modelcontextprotocol.io/quickstart/user).
31
34
32
35
**Standard Configuration:**
33
36
@@ -36,7 +39,7 @@ For more information, you can refer to the [Cursor MCP documentation](https://do
36
39
"mcpServers": {
37
40
"hyperweb-mcp-server": {
38
41
"command": "npx",
39
-
"args": ["-y", "@hyperweb/mcp-server@latest"]
42
+
"args": ["-y", "@hyperweb/mcp-server@latest"]// Make sure to use the latest version
40
43
}
41
44
}
42
45
}
@@ -51,12 +54,16 @@ If you are on Windows, you might need to use this alternative configuration:
"args": ["/k", "npx", "-y", "@hyperweb/mcp-server@latest"]// Make sure to use the latest version
55
58
}
56
59
}
57
60
}
58
61
```
59
62
63
+
After setting up the configuration, the MCP server will be available in the MCP clients (Cursor/Claude Desktop) and you will be able to interact with it through normal prompting.
64
+
65
+
The context will be detected and injected into the context of your conversation with AI agents and the tools will be available for use.
66
+
60
67
## Available Tools
61
68
62
69
This server provides a range of tools to assist with development in the Hyperweb and Cosmos ecosystems. For a detailed list of all available tools, their descriptions, and parameters, please refer to the [API Reference](./references).
0 commit comments