Mac百度网盘终极加速指南:3步突破限速实现SVIP高速下载
2026/6/12 20:11:39
维智 MCP Server 基于标准化 MCP 协议,整合丰富地理信息数据,为智能体提供地点搜索、正 / 逆地理编码、IP 定位解析、天气查询四大核心能力。数据覆盖城市级、街道级、坐标级查询,支持 HTTP/SSE 双传输协议,可快速适配 VSCode、Cursor、各类编程语言开发环境,助力智能体高效实现地理信息相关功能。
在客户端配置文件中添加如下 JSON 配置,替换 YOUR_ACCESS_KEY 为实际申请的 API Key:
{ "mcpServers": { "wayz-lot-mcp": { "type": "sse", "url": "https://positionboard.newayz.com/mcp", "headers": { "X-API-Key": "YOUR_ACCESS_KEY" }, "timeout": 60, "sse_read_timeout": 300 } } }python 运行
from fastmcp import Client config = { "mcpServers": { "server_name": { "transport": "http", # 可选 "sse" 协议 "url": "https://positionboard.newayz.com/mcp", "headers": {"X-API-Key": ACCESS_KEY} # 替换为实际 API Key } } } client = Client(config)python 运行
client.call_tool("geocode_tool", { "address": "北京市东城区东长安街", "city": "北京" })python 运行
client.call_tool("regeocode_tool", { "longitude": 116.397128, "latitude": 39.916527 })python 运行
client.call_tool("ip_location_tool", {"ip": "8.8.8.8"})python 运行
client.call_tool("get_weather_tool", {"name": "北京"})