QAX XLab's mcp server
Project description
fdp-mcp-server
中文说明:README-zh_CN.md.
QiAnXin XLab provides MCP tools for accessing foundational network security data.
About XLab
XLab is a research team under QiAnXin dedicated to large-scale network security research, threat analysis and attribution, and the construction of multidimensional security data platforms.
XLab is one of the earliest teams in China to leverage large-scale data for cybersecurity research, security applications, and threat intelligence generation. It built the country’s first PassiveDNS system, along with several industry-leading foundational data systems covering NetFlow, Whois, digital certificates, IPs, and malware samples.
Tool Categories
The fdp-mcp-server provides multiple categories of tools. Users can select specific URLs to load the corresponding tools based on their needs.
Currently available tool sets:
- Basic Network Security Data Query
URL: https://fdp.qianxin.com/mcp/v1/basic/mcp/
Includes:- flint rrset: Query Resource Record Sets (RRsets) for specific domain names and record types
- flint rdata: Reverse lookup of DNS response rrset records
- whois history: Retrieve registration history of domain names or IP addresses
- certdb domain: Query certificate data by domain name
- ioc: Search XLab’s IOC (Indicators of Compromise) database
- Domain-Related Data Query
URL: https://fdp.qianxin.com/mcp/v1/domain/mcp/
Includes:- codomain: Retrieve co-occurring domains and their associated tags
- float_fqdn: Domain popularity rankings based on PassiveDNS data
- webdb: Retrieve webpage content associated with a domain
- libra: Access analytical data on domains from XLab’s Libra platform
- IP-Related Data Query
URL: https://fdp.qianxin.com/mcp/v1/ip/mcp/
Includes:- ip_geo: Lookup for IPv4 geolocation, ASN, and IP ownership
- Sample-Related Data Query
URL: https://fdp.qianxin.com/mcp/v1/sample/mcp/
Includes:- sandbox: Retrieve summarized network behavior of samples
Execution Methods
Overview
- This application functions as a proxy that translates remote MCP tool calls into local Stdio-based interactions. Therefore, tools can be used either locally or by directly accessing the remote MCP server via its URL.
- The remote MCP server currently supports only streamable HTTP access.
- This toolset is a trial version intended for basic use. Under high concurrency, the backend may restrict access frequency. For production or high-frequency scenarios, please use the official version.
- For official access, use the corresponding tool URL and include two HTTP headers:
fdp-accessandfdp-secret.- To obtain credentials, please contact QiAnXin XLab.
- The following examples are based on the
Basic Network Security Data Querytool.
Trial Version Usage
Run Locally from Source Code
- Clone the repository.
- Use uv to run and configure Claude Desktop:
{ "mcpServers": { "fdp-mcp-server": { "command": "uv", "args": [ "run", "--project", "/PATH/TO/fdp-mcp-server", "fdp-mcp-server", "--url", "https://fdp.qianxin.com/mcp/v1/basic/mcp/" ] } } }
Run with Docker
- Clone the repository.
- Build the Docker image:
docker build . fdp-mcp-server:vxx.xx.xx - Configure Claude Desktop:
{ "mcpServers": { "fdp-mcp-server": { "command": "docker", "args": [ "run", "-i", "--rm", "fdp-mcp-server:vxx.xx.xx" ] } } }
Run via PyPI Package
- Use uvx and configure Claude Desktop as follows:
{ "mcpServers": { "fdp-mcp-server": { "command": "uvx", "args": [ "fdp-mcp-server", "--url", "https://fdp.qianxin.com/mcp/v1/basic/mcp/" ] } } }
Official Version Usage
If you want to call the fdp-mcp-server tools from within an intelligent agent application, you can configure the remote MCP server URL on the client side and include the required HTTP headers fdp-access and fdp-secret.
- When writing agent code, add the headers when calling the MCP tools. Example using smolagents:
from smolagents import ToolCollection from smolagents.agents import ToolCallingAgent from smolagents.models import OpenAIServerModel def main(): with ToolCollection.from_mcp( { "url": "https://fdp.qianxin.com/mcp/v1/domain/mcp/", "transport": "streamable-http", "headers": { "fdp-access": "xxxx", "fdp-secret": "yyyy", }, }, trust_remote_code=True, ) as tools: agent = ToolCallingAgent( tools=[*tools.tools], model=OpenAIServerModel( model_id="YOUR-LLM-MODEL-ID", api_base="YOUR-LLM-MODEL-API-URL", api_key="YOUR-LLM-MODEL-API-KEY", ), ) agent.run("Query the domains associated with www.example.com and assess its likely business purpose based on the associated data.") if __name__ == "__main__": main()
- If using Claude Desktop, you can use the mcp-remote library for proxy forwarding and configure the HTTP headers during the process:
{ "mcpServers": { "fdp_domain": { "command": "npx", "args": [ "-y", "mcp-remote@latest", "https://fdp.qianxin.com/mcp/v1/domain/mcp/", "--header", "fdp-access:xxxx", "--header", "fdp-secret:yyyy" ], } } }
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fdp_mcp_server-0.1.1-py3-none-any.whl.
File metadata
- Download URL: fdp_mcp_server-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e4a40425aa24cbe598f3d9843fc7979428433d7f7f75147da705b4f6f87841b
|
|
| MD5 |
a168d985faffb9d41922e8124d1eef7b
|
|
| BLAKE2b-256 |
6978939320f88530083c6b05fa23aa2ef0fa589e1b177f3a1b7b70d3f93e91eb
|