@konseki/mcp 1.0.1 → 1.0.3
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 +4 -0
- package/dist/server.js +1 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Official Model Context Protocol server for Konseki.
|
|
4
4
|
|
|
5
|
+
Konseki is a pre-computed historical market context API for global equities, built for AI trading and quants. It matches current market conditions against historical analogs and returns structured pattern-match data, outcome distributions, and match-quality scores, grounding an AI agent's reasoning in evidence rather than generic commentary.
|
|
6
|
+
|
|
5
7
|
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
8
|
|
|
7
9
|
Published package: [`@konseki/mcp`](https://www.npmjs.com/package/@konseki/mcp)
|
|
@@ -11,6 +13,8 @@ Published package: [`@konseki/mcp`](https://www.npmjs.com/package/@konseki/mcp)
|
|
|
11
13
|
- Node.js 20 or newer.
|
|
12
14
|
- A Konseki API key.
|
|
13
15
|
|
|
16
|
+
Get an API key from [konseki.io](https://konseki.io).
|
|
17
|
+
|
|
14
18
|
## Design Principles
|
|
15
19
|
|
|
16
20
|
- Direct API wrapper: the MCP server fetches Konseki API responses and returns them without interpretation.
|
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.3",
|
|
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
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@konseki/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Official Konseki MCP server: a direct AI-agent wrapper around the Konseki public API for historical market context.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/konseki-official/konseki-mcp.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://konseki.io",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/konseki-official/konseki-mcp/issues"
|
|
14
|
+
},
|
|
7
15
|
"bin": {
|
|
8
16
|
"konseki-mcp": "dist/index.js"
|
|
9
17
|
},
|