@kansei-link/mcp-server 0.2.0 → 0.2.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/.well-known/mcp/server.json +26 -6
- package/package.json +2 -1
|
@@ -1,27 +1,47 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.kansei-link/kansei-mcp-server",
|
|
4
|
+
"description": "MCP intelligence layer for discovering and orchestrating Japanese SaaS MCP tools. AEO (Agent Engine Optimization) for the Agent Economy.",
|
|
5
|
+
"version": "0.2.0",
|
|
5
6
|
"namespace": "io.github.kansei-link",
|
|
6
|
-
"homepage": "https://github.com/kansei-link/mcp-server",
|
|
7
|
+
"homepage": "https://github.com/kansei-link/kansei-mcp-server",
|
|
8
|
+
"repository": "https://github.com/kansei-link/kansei-mcp-server",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "Synapse Arrows PTE. LTD."
|
|
12
|
+
},
|
|
7
13
|
"tools": [
|
|
8
14
|
{
|
|
9
15
|
"name": "search_services",
|
|
10
|
-
"description": "Intent-based search for Japanese SaaS MCP services"
|
|
16
|
+
"description": "Intent-based search for Japanese SaaS MCP services with category-aware ranking"
|
|
11
17
|
},
|
|
12
18
|
{
|
|
13
19
|
"name": "get_recipe",
|
|
14
20
|
"description": "Get structured workflow recipes combining multiple MCP services"
|
|
15
21
|
},
|
|
22
|
+
{
|
|
23
|
+
"name": "find_combinations",
|
|
24
|
+
"description": "Reverse recipe lookup — find what other MCPs can be combined with a given service"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "check_updates",
|
|
28
|
+
"description": "Check recent changes and changelog for an MCP service"
|
|
29
|
+
},
|
|
16
30
|
{
|
|
17
31
|
"name": "report_outcome",
|
|
18
32
|
"description": "Report agent experience using an MCP service (anonymized, PII-masked)"
|
|
19
33
|
},
|
|
20
34
|
{
|
|
21
35
|
"name": "get_insights",
|
|
22
|
-
"description": "Read aggregated agent experience data for a service"
|
|
36
|
+
"description": "Read aggregated agent experience data and confidence scores for a service"
|
|
23
37
|
}
|
|
24
38
|
],
|
|
39
|
+
"packages": {
|
|
40
|
+
"npm": {
|
|
41
|
+
"name": "@kansei-link/mcp-server",
|
|
42
|
+
"version": "0.2.0"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
25
45
|
"transports": {
|
|
26
46
|
"stdio": {
|
|
27
47
|
"command": "npx",
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kansei-link/mcp-server",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "io.github.kansei-link/kansei-mcp-server",
|
|
4
|
+
"version": "0.2.1",
|
|
4
5
|
"description": "MCP intelligence layer for discovering and orchestrating Japanese SaaS MCP tools",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|