
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
The complete toolkit for building AI-powered applications with Model Context Protocol (MCP) support.
OmniMCP is a comprehensive SDK for integrating with MCP servers, enabling seamless communication between AI models and external tools. It provides both CLI and programmatic interfaces for maximum flexibility.
npm install omnimcp
# Start interactive web UI
npx omnimcp web
# Connect to a local MCP server
npx omnimcp connect --transport stdio --command "node server.js"
# List available tools
npx omnimcp tools list
import { MCPClient } from '@omnimcp/client';
// Create a client
const client = new MCPClient('my-app', '1.0.0');
// Connect to an MCP server
await client.connect({
type: 'stdio',
options: {
command: 'node',
args: ['path/to/mcp-server.js']
}
});
// List available tools
const tools = await client.tools.list();
console.log('Available tools:', tools);
// Call a tool
const result = await client.tools.call({
name: 'get_weather',
arguments: { city: 'San Francisco' }
});
import { MCPClientWithAI } from '@omnimcp/client/providers';
// Create AI-enabled client
const client = new MCPClientWithAI('my-app', '1.0.0', {
apiKey: process.env.OPENAI_API_KEY,
provider: 'openai'
});
await client.connect({
type: 'stdio',
options: { command: 'mcp-server' }
});
// Use AI to intelligently call tools
const response = await client.queryAI(
"What's the weather in Tokyo?",
{ model: 'gpt-4' }
);
This package includes:
For detailed documentation, examples, and API reference, visit:
MIT © OmniMCP Team
FAQs
Universal Model Context Protocol Client - The complete toolkit for MCP
We found that omnimcp 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.