
Research
TeamPCP Compromises Telnyx Python SDK to Deliver Credential-Stealing Malware
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.
fluxprotocol-client
Advanced tools
HTTP and WebSocket client for FLUX Protocol. Supports TOON format for 40% fewer tokens.
npm install fluxprotocol-client
import { FluxClient } from 'fluxprotocol-client';
const client = new FluxClient('http://localhost:3000');
// List available tools
const tools = await client.listTools();
// Call a tool
const weather = await client.call('weather.getWeather', { city: 'Tokyo' });
const client = new FluxClient('http://localhost:3000');
// Enable TOON format for token efficiency
const tools = await client.useToon().listTools();
const weather = await client.useToon().call('weather.getWeather', { city: 'Tokyo' });
// Switch back to JSON
const result = await client.useJson().call('data.query', { sql: 'SELECT *' });
import { FluxWebSocketClient } from 'fluxprotocol-client';
const client = new FluxWebSocketClient('ws://localhost:3001/ws');
await client.connect();
const weather = await client.call('weather.getWeather', { city: 'Tokyo' });
client.close();
import { FluxClient } from 'fluxprotocol-client';
import { tool } from '@langchain/core/tools';
const flux = new FluxClient('http://localhost:3000');
const weatherTool = tool(
async (input) => {
return await flux.useToon().call('weather.getWeather', input);
},
{ name: 'get_weather', description: 'Get weather for a city' }
);
fluxprotocol-sdk - Core SDK (for building connectors)fluxprotocol-cli - CLI toolsMIT
FAQs
FLUX client library for HTTP and WebSocket
The npm package fluxprotocol-client receives a total of 0 weekly downloads. As such, fluxprotocol-client popularity was classified as not popular.
We found that fluxprotocol-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.

Security News
/Research
Widespread GitHub phishing campaign uses fake Visual Studio Code security alerts in Discussions to trick developers into visiting malicious website.