sigrank-mcp 0.6.8 → 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 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.6.5')
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.6.4' }, { capabilities: { tools: {} } })
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.6.8",
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
  },
package/tokenpull.mjs CHANGED
@@ -263,6 +263,14 @@ export async function tokenpullAny(platform, opts = {}) {
263
263
  }
264
264
  return tokenpullCodex({ ioRatio, ...opts })
265
265
  }
266
+ // Cloud agents (Devin, etc.) run server-side — no local JSONL to read
267
+ const CLOUD_AGENTS = { devin: 'Cognition/Devin', }
268
+ if (platform in CLOUD_AGENTS) {
269
+ throw new Error(
270
+ `"${platform}" (${CLOUD_AGENTS[platform]}) runs in the cloud — sessions are not written to local JSONL files. ` +
271
+ `There is no local data source to read. If ${CLOUD_AGENTS[platform]} exposes a usage API in future, an adapter can be added.`
272
+ )
273
+ }
266
274
  const adapter = ADAPTERS[platform]
267
275
  if (!adapter) throw new Error(`Unknown platform "${platform}". Valid platforms: claude, codex, ${Object.keys(ADAPTERS).join(', ')}`)
268
276
  const result = await tokenpull({ adapter, ...opts })