@konseki/mcp 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -2
- package/dist/server.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Official Model Context Protocol server for Konseki.
|
|
|
4
4
|
|
|
5
5
|
Konseki MCP is a direct wrapper around the Konseki public API. It lets AI agents and AI trading tools call Konseki endpoints through MCP tools while preserving the raw API response JSON for the user or downstream application to interpret.
|
|
6
6
|
|
|
7
|
+
Published package: [`@konseki/mcp`](https://www.npmjs.com/package/@konseki/mcp)
|
|
8
|
+
|
|
7
9
|
## Requirements
|
|
8
10
|
|
|
9
11
|
- Node.js 20 or newer.
|
|
@@ -79,7 +81,7 @@ The server requests gzip-compressed API responses and decompresses them locally
|
|
|
79
81
|
|
|
80
82
|
## Installation
|
|
81
83
|
|
|
82
|
-
Use the package through an MCP client with `npx`:
|
|
84
|
+
Use the published npm package through an MCP client with `npx`:
|
|
83
85
|
|
|
84
86
|
```json
|
|
85
87
|
{
|
|
@@ -95,7 +97,16 @@ Use the package through an MCP client with `npx`:
|
|
|
95
97
|
}
|
|
96
98
|
```
|
|
97
99
|
|
|
98
|
-
|
|
100
|
+
This is the recommended configuration for users who want the official released package from npm.
|
|
101
|
+
|
|
102
|
+
## Local Development
|
|
103
|
+
|
|
104
|
+
For development from this checkout, install dependencies, build the package, and configure your MCP client to run the built server:
|
|
105
|
+
|
|
106
|
+
```sh
|
|
107
|
+
npm install
|
|
108
|
+
npm run build
|
|
109
|
+
```
|
|
99
110
|
|
|
100
111
|
```json
|
|
101
112
|
{
|
package/dist/server.js
CHANGED
|
@@ -3,7 +3,7 @@ import { analysisInputSchema, createAnalysisToolHandler, createMetadataToolHandl
|
|
|
3
3
|
export function createKonsekiMcpServer(client) {
|
|
4
4
|
const server = new McpServer({
|
|
5
5
|
name: "konseki-mcp",
|
|
6
|
-
version: "1.0.
|
|
6
|
+
version: "1.0.1",
|
|
7
7
|
});
|
|
8
8
|
server.registerTool("get_konseki_metadata", {
|
|
9
9
|
description: "Fetch raw metadata JSON from the Konseki public API.",
|
package/package.json
CHANGED