Public MCP report
Agent https://fluxiq.xyz/api/mcp
Official Registry Official Registry · xyz.fluxiq/agent · Publisher namespace: xyz.fluxiq
Server checked today at 20:35 UTC
Displayed catalog: last complete observation from September 19
9 public tools observed. Tools were not executed. These tools come from the catalog observation above, not from the latest availability check.
Insufficient evidence Check again
What Talandor observed
Insufficient public evidence Incomplete observation
Insufficient evidence is a limit of this public check, not a judgment that the server is unusable. Retry later.
https://fluxiq.xyz/api/mcp
Availability Incomplete observation measured
Tools Not fully observable measured
Compatibility Unknown unknown
Configure your assistant · Check details
How to use this MCP Talandor checks the server; it does not connect the server to your assistant.
Choose your assistant, then copy the configuration shown for that client. Authentication is completed with the MCP provider, never inside Talandor.
Compatibility evidence by assistant Compatibility is estimated from published configuration rules and is not a hands-on test in each client.
Client setup cannot be inferred yet. This public check did not observe a complete tool contract or an authentication challenge, so there is no honest compatibility signal.
Rule evidence: Remote HTTPS rule v0.2 · reviewed 2026-09-12 · Remote HTTP rule v0.2 · reviewed 2026-09-12 · Remote app rule v0.2 · reviewed 2026-09-12 · Protocol and transport rule v0.2 · reviewed 2026-09-12
Check details
What changed Public contract is no longer observable since Sep 20, 2026 · 11:28 PM UTC Ongoing Sep 22, 2026 · 8:35 PM UTC · A complete public contract was observed earlier. The latest check did not re-observe it. This is a limit of evidence, not a quality judgment.
Warning A Watch would follow availability and the last known public contract, and alert only if a change may affect the selected client.
The notes above are for this connector.
Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
Tools and declared exposure Server annotations are declarations, not verified behavior.
Show 9 of 9 server-provided tool definitions build_lp_deposit
No effect details provided Show server-provided details Server description (copied; language not verified) Build a NON-CUSTODIAL any-token LP deposit plan (approve → Permit2 sign → router.depositAnyToken) for the caller to sign + broadcast. No broadcast.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"amountIn",
"chainId",
"inputToken",
"recipient",
"vault"
],
"properties": {
"vault": {
"type": "string",
"description": "Known any-token LP vault address."
},
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "EVM chain id (mainnet = 1 in v1)."
},
"amountIn": {
"type": "string",
"description": "Amount in base units (integer string, e.g. USDC 6dp)."
},
"recipient": {
"type": "string",
"description": "Recipient / payer address (the wallet that signs + receives)."
},
"inputToken": {
"type": "string",
"description": "Any held token to deposit."
},
"slippageBps": {
"type": "integer",
"maximum": 10000,
"minimum": 0,
"description": "Optional slippage budget in basis points (0–10000)."
}
}
} build_lp_withdraw
No effect details provided Show server-provided details Server description (copied; language not verified) Build a NON-CUSTODIAL any-token LP withdraw plan (approve shares → Permit2 sign → router.withdrawAnyToken) for the caller to sign + broadcast. No broadcast.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"chainId",
"outputToken",
"recipient",
"shares",
"vault"
],
"properties": {
"vault": {
"type": "string",
"description": "Known any-token LP vault address."
},
"shares": {
"type": "string",
"description": "Vault shares to burn (base-unit integer string)."
},
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "EVM chain id (mainnet = 1 in v1)."
},
"recipient": {
"type": "string",
"description": "Recipient / payer address (the wallet that signs + receives)."
},
"outputToken": {
"type": "string",
"description": "Token to receive on withdraw."
},
"slippageBps": {
"type": "integer",
"maximum": 10000,
"minimum": 0,
"description": "Optional slippage budget in basis points (0–10000)."
}
}
} build_swap
No effect details provided Show server-provided details Server description (copied; language not verified) Build a NON-CUSTODIAL ERC20 swap plan (approve → Permit2 sign → router.swap) for the caller to sign + broadcast. No broadcast.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"amountIn",
"chainId",
"recipient",
"tokenIn",
"tokenOut"
],
"properties": {
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "EVM chain id (mainnet = 1 in v1)."
},
"tokenIn": {
"type": "string",
"description": "ERC20 input token (native ETH is not supported)."
},
"amountIn": {
"type": "string",
"description": "Amount in base units (integer string, e.g. USDC 6dp)."
},
"tokenOut": {
"type": "string",
"description": "ERC20 output token."
},
"recipient": {
"type": "string",
"description": "Recipient / payer address (the wallet that signs + receives)."
},
"slippageBps": {
"type": "integer",
"maximum": 10000,
"minimum": 0,
"description": "Optional slippage budget in basis points (0–10000)."
}
}
} list_tokens
No effect details provided Show server-provided details Server description (copied; language not verified) List the public swap token allow-list (address/symbol/name/decimals). Public market data only — no user-private reads.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "Defaults to mainnet (1)."
}
}
} list_vaults
No effect details provided Show server-provided details Server description (copied; language not verified) List the public any-token LP vaults (addresses + token pair). Public market data only — no user-private reads.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "Defaults to mainnet (1)."
}
}
} ping
No effect details provided Show server-provided details Server description (copied; language not verified) Health check — returns 'pong'.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {}
} quote_lp_deposit
No effect details provided Show server-provided details Server description (copied; language not verified) Read-only any-token LP deposit preview: estimated shares, guaranteed minShares, fee, and refund bps. No broadcast.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"amountIn",
"chainId",
"inputToken",
"recipient",
"vault"
],
"properties": {
"vault": {
"type": "string",
"description": "Known any-token LP vault address."
},
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "EVM chain id (mainnet = 1 in v1)."
},
"amountIn": {
"type": "string",
"description": "Amount in base units (integer string, e.g. USDC 6dp)."
},
"recipient": {
"type": "string",
"description": "Recipient / payer address (the wallet that signs + receives)."
},
"inputToken": {
"type": "string",
"description": "Any held token to deposit."
},
"slippageBps": {
"type": "integer",
"maximum": 10000,
"minimum": 0,
"description": "Optional slippage budget in basis points (0–10000)."
}
}
} quote_lp_withdraw
No effect details provided Show server-provided details Server description (copied; language not verified) Read-only any-token LP withdraw preview: estimated and guaranteed token-out for burning vault shares. No broadcast.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"chainId",
"outputToken",
"recipient",
"shares",
"vault"
],
"properties": {
"vault": {
"type": "string",
"description": "Known any-token LP vault address."
},
"shares": {
"type": "string",
"description": "Vault shares to burn (base-unit integer string)."
},
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "EVM chain id (mainnet = 1 in v1)."
},
"recipient": {
"type": "string",
"description": "Recipient / payer address (the wallet that signs + receives)."
},
"outputToken": {
"type": "string",
"description": "Token to receive on withdraw."
},
"slippageBps": {
"type": "integer",
"maximum": 10000,
"minimum": 0,
"description": "Optional slippage budget in basis points (0–10000)."
}
}
} quote_swap
No effect details provided Show server-provided details Server description (copied; language not verified) Read-only ERC20 swap quote: expected out, guaranteed minOut, fee, and a high-level route summary. No broadcast.
Input schema (server-provided preview — do not copy) {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"amountIn",
"chainId",
"recipient",
"tokenIn",
"tokenOut"
],
"properties": {
"chainId": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "EVM chain id (mainnet = 1 in v1)."
},
"tokenIn": {
"type": "string",
"description": "ERC20 input token (native ETH is not supported)."
},
"amountIn": {
"type": "string",
"description": "Amount in base units (integer string, e.g. USDC 6dp)."
},
"tokenOut": {
"type": "string",
"description": "ERC20 output token."
},
"recipient": {
"type": "string",
"description": "Recipient / payer address (the wallet that signs + receives)."
},
"slippageBps": {
"type": "integer",
"maximum": 10000,
"minimum": 0,
"description": "Optional slippage budget in basis points (0–10000)."
}
}
}
Evidence and limitations Method: anonymous Streamable HTTP probe. We never invoke a tool.
Attempted protocols: 2026-07-28, 2025-11-25
Protocol Not listed in this check
Transport HTTPS · HTTP 402
Auth No authentication challenge in this check
Evidence Transport only
Total latency 4785 ms
Response bytes 0
MCP_RESPONSE_ERROR — The endpoint returned an incomplete or incompatible MCP response.
Observation history Unknown Sep 22, 2026 · 8:35 PM UTC
No protocol Unknown Sep 22, 2026 · 7:50 PM UTC
No protocol Unknown Sep 22, 2026 · 6:08 PM UTC
No protocol Unknown Sep 22, 2026 · 5:22 PM UTC
No protocol Unknown Sep 22, 2026 · 11:52 AM UTC
No protocol Unknown Sep 22, 2026 · 7:22 AM UTC
No protocol Unknown Sep 22, 2026 · 5:05 AM UTC
No protocol Unknown Sep 22, 2026 · 3:44 AM UTC
No protocol Unknown Sep 22, 2026 · 2:23 AM UTC
No protocol Unknown Sep 22, 2026 · 1:07 AM UTC
No protocol Unknown Sep 21, 2026 · 10:29 PM UTC
No protocol Unknown Sep 21, 2026 · 9:15 PM UTC
No protocol Unknown Sep 21, 2026 · 7:53 PM UTC
No protocol Unknown Sep 21, 2026 · 6:30 PM UTC
No protocol Unknown Sep 21, 2026 · 3:32 PM UTC
No protocol Unknown Sep 21, 2026 · 2:12 PM UTC
No protocol Unknown Sep 21, 2026 · 12:50 PM UTC
No protocol Unknown Sep 21, 2026 · 11:32 AM UTC
No protocol Unknown Sep 21, 2026 · 10:11 AM UTC
No protocol Unknown Sep 21, 2026 · 8:50 AM UTC
No protocol Unknown Sep 21, 2026 · 7:30 AM UTC
No protocol Unknown Sep 21, 2026 · 6:09 AM UTC
No protocol Unknown Sep 21, 2026 · 4:49 AM UTC
No protocol Unknown Sep 21, 2026 · 3:28 AM UTC
No protocol Unknown Sep 21, 2026 · 2:08 AM UTC
No protocol Unknown Sep 21, 2026 · 12:47 AM UTC
No protocol Operational Sep 20, 2026 · 11:28 PM UTC · stable since Sep 19, 2026 · 7:48 AM UTC
2025-11-25 · 9 tools · no change · 21 checks Sep 19, 2026 · 7:48 AM UTC Complete public contract · 2025-11-25 · 9 tools
18ffe5179af0
Deep monitoring eligibility Not eligible yet
Only transport-level evidence was observed; no public tools/list contract was confirmed.
Personal Watch is not open yet. This report does not start a Watch or a payment.
See public monitoring
Automatic monitoring later Saving this connector does not start a Watch. Watch is a future offer ; subscriptions and alerts are not available yet.
This result is not eligible for automatic monitoring yet.