sigrank-mcp 0.6.9 → 0.7.0
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/cli.mjs +1 -1
- package/index.mjs +1 -1
- package/package.json +10 -1
package/cli.mjs
CHANGED
|
@@ -805,7 +805,7 @@ export async function runCli(argv) {
|
|
|
805
805
|
} else if (cmd === '--help' || cmd === '-h' || cmd === 'help') {
|
|
806
806
|
showHelp()
|
|
807
807
|
} else if (cmd === '--version' || cmd === '-v') {
|
|
808
|
-
writeln('0.
|
|
808
|
+
writeln('0.7.0')
|
|
809
809
|
} else {
|
|
810
810
|
// unknown command: show help
|
|
811
811
|
showHelp()
|
package/index.mjs
CHANGED
|
@@ -39,7 +39,7 @@ process.on('unhandledRejection', (reason) => {
|
|
|
39
39
|
})
|
|
40
40
|
|
|
41
41
|
async function startMcpServer() {
|
|
42
|
-
const server = new Server({ name: 'sigrank', version: '0.
|
|
42
|
+
const server = new Server({ name: 'sigrank', version: '0.7.0' }, { capabilities: { tools: {} } })
|
|
43
43
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }))
|
|
44
44
|
server.setRequestHandler(CallToolRequestSchema, async (req) => {
|
|
45
45
|
try {
|
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sigrank-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "SigRank MCP server — the yield cascade + live leaderboard as MCP tools any agent can call",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/SunrisesIllNeverSee/sigrank-mcp.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://signalaf.com",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/SunrisesIllNeverSee/sigrank-mcp/issues"
|
|
14
|
+
},
|
|
6
15
|
"bin": {
|
|
7
16
|
"sigrank-mcp": "index.mjs"
|
|
8
17
|
},
|