通过托管 OAuth 访问 Microsoft Graph Excel 接口,读写 OneDrive 中的工作簿、工作表、区域、表格与图表。
集成
Danube
试用用一个 API Key 把智能体接入持续扩张的工具与服务市场。
它能做什么
Danube 通过单一 API Key 暴露出一个不断扩展的工具与服务市场,支持原生 MCP 或 HTTPS 接入。连接后,agent 可调用 list_services() 浏览、按自然语言 search_tools() 做语义检索、再通过 get_service_tools(service_id) 查看参数 schema,然后用 execute_tool() 执行单个工具,或用 batch_execute_tools() 在一次请求里并发运行最多 10 个调用。Key 按用户隔离,配合行级安全与执行审计(每条记录都含时间戳、参数与结果)。写入动作被限制在本人创建的技能与工作流范围内。若工具缺少凭据,execute_tool 会返回 auth_required,需要用户先去 Danube Dashboard 配置好凭证再重试。Key 的签发也支持符合 RFC 8628 的 OAuth 2.0 设备授权流程。
什么时候用它
- 先用语义搜索摸清可用工具再动手调用
- 单次请求并发执行最多 10 个工具调用
- 通过 MCP 把智能体对接到 Danube 服务市场
- 回看审计日志,复盘每一次工具调用的时间与参数
技能文档
Danube — Connect Your Agent
Danube is a marketplace that gives your AI agent access to a large and growing collection of services and tools through a single API key. New services and tools are added regularly — always search and explore to see what's currently available rather than assuming a fixed set.
Quick Setup
Step 1: Get an API Key
You can get your API key from the Danube Dashboard under Settings > API Keys.
Alternatively, use the standard OAuth 2.0 Device Authorization flow (RFC 8628) — this requires the user to explicitly approve access in their browser:
curl -s -X POST https://api.danubeai.com/v1/auth/device/code \
-H "Content-Type: application/json" \
-d '{"client_name": "My Agent"}'
This returns a device_code, a user_code, and a verification_url.
The user must open the verification URL in their browser and enter the code to authorize access.
Then poll for the API key:
curl -s -X POST https://api.danubeai.com/v1/auth/device/token \
-H "Content-Type: application/json" \
-d '{"device_code": "DEVICE_CODE_FROM_STEP_1"}'
428= user hasn't authorized yet (keep polling every 5 seconds)200= success, response contains yourapi_key410= expired, start over
Step 2: Connect via MCP
Add this to your MCP config:
{
"mcpServers": {
"danube": {
"url": "https://mcp.danubeai.com/mcp",
"headers": {
"danube-api-key": "YOUR_API_KEY"
}
}
}
}
Security & Privacy
- User-scoped access: Each API key is scoped to the authenticated user. You cannot access another user's data, tools, or skills.
- Row-level security: Database access is enforced with row-level security policies — queries only return data belonging to the authenticated user.
- Audit trail: All tool executions are logged with timestamps, parameters, and results for user review.
Permissions & Scope
The DANUBE_API_KEY grants:
- Read: Browse services, search tools, view public skills/workflows/sites
- Execute: Run tools and workflows
- Write (user-scoped only): Create/update/delete your own skills and workflows
The API key does not grant:
- Access to other users' data or resources
- Admin or platform-level operations
- Access to raw database or infrastructure
Step 3: Explore & Use Tools
Once connected, you have access to a marketplace of services and tools that is constantly growing. Do not assume you know what's available — always search and explore first.
How to Discover What's Available
list_services()— Browse all available service providers. Usequeryto filter andlimitto control how many results. Start here to get a sense of what the marketplace offers.search_tools(query)— Semantic search across all tools. Describe what you want to accomplish in natural language (e.g., "send an email", "create a GitHub issue", "translate text"). This searches the entire marketplace.get_service_tools(service_id)— Once you find an interesting service, get all its available tools to see the full range of what it offers.
Important: The marketplace has many more services and tools than you might expect. When a user asks you to do something, always search broadly first. Try multiple search queries with different phrasing if the first search doesn't find what you need. Browse services by category. The right tool is probably available — you just need to find it.
How to Execute Tools
execute_tool(tool_id, parameters)— Run any tool by its ID. The tool's schema (returned from search/discovery) tells you exactly what parameters it expects.batch_execute_tools(calls)— Run multiple tools concurrently in a single request (up to 10).
Skills, Workflows & More
Danube also offers skills (reusable agent instructions), workflows (multi-step tool chains), an agent web directory, agent management, and tool quality ratings. Use search_skills, list_workflows, search_sites, and other tools to explore these capabilities — they are all discoverable through the MCP connection.
When a Tool Needs Credentials
If execute_tool returns an auth_required error, it means the service needs credentials configured. Direct the user to configure credentials at https://danubeai.com/dashboard, then retry the tool.
Core Workflow
Every tool interaction follows this pattern:
- Explore — Start with
list_services()orsearch_tools("what you want to do")to discover what's available. Try broad queries. Browse by category. Don't assume — search. - Check auth — If the tool needs credentials, direct the user to https://danubeai.com/dashboard to configure them
- Gather parameters — Ask the user for any missing required info
- Execute —
execute_tool(tool_id, parameters) - Report — Tell the user what happened with specifics, not just "Done"
Links
- Dashboard: https://danubeai.com/dashboard
- Docs: https://docs.danubeai.com
- MCP Server: https://mcp.danubeai.com/mcp
- Privacy Policy: https://danubeai.com/privacy
- Terms of Service: https://danubeai.com/terms
相关技能
在本地磁盘以分类纯 Markdown 文件保存需要长期留存的事实,与智能体内置记忆并存。
按用户明确指令,在得到大脑(Get笔记)中保存、搜索并管理笔记与知识库。
编写、调试与调优 Playwright 测试,涵盖定位器策略、追踪诊断与 CI 友好的超时配置。
从 AdMapix API 拉取广告创意、应用、榜单和收入预估等数据,原样返回结构化 JSON。
执行 Git 操作(提交、分支、合并、变基、冲突解决与恢复)时强制套用安全规则。