@businessmaps/mcp
@businessmaps/bifrost
AIツールがブラウザで実行中の関数を呼び出せるようにするMCPサーバーです。
このデーモンは、任意のMCPクライアントとブラウザタブの間に配置されます。片側でstdioを介してJSON-RPCを話し、もう片側でWebSocketを話します。ブラウザアプリが接続してツールを登録すると、AIがそれらを呼び出せるようになります。
クイックスタート
1. AIツールに追加する
Claude Code:
claude mcp add --transport stdio bifrost -- npx @businessmaps/bifrost --no-authClaude Desktop - ~/Library/Application Support/Claude/claude_desktop_config.json に追加:
{
"mcpServers": {
"bifrost": {
"command": "npx",
"args": ["@businessmaps/bifrost", "--no-auth"]
}
}
}Cursor - .cursor/mcp.json に追加:
{
"mcpServers": {
"bifrost": {
"command": "npx",
"args": ["@businessmaps/bifrost", "--no-auth"]
}
}
}インストールは不要です。npxが自動的にパッケージをダウンロードして実行します。
2. ブラウザアプリにクライアントを追加する
npm i @businessmaps/bifrost-browserまたはCDN経由:
<script src="https://unpkg.com/@businessmaps/bifrost-browser"></script>TypeScriptの型定義が含まれています。
3. ツールを登録する
import { BifrostBrowser } from "@businessmaps/bifrost-browser";
const bridge = new BifrostBrowser({ port: 3099 });
bridge.registerTools([
{
name: "get_page_title",
description: "Returns the page title",
inputSchema: { type: "object", properties: {} },
handler: async () => document.title,
},
{
name: "get_selection",
description: "Returns the user's current text selection",
inputSchema: { type: "object", properties: {} },
handler: async () => window.getSelection().toString(),
},
]);
bridge.connect();これで完了です。AIはブラウザタブ内の get_page_title や get_selection を呼び出せるようになります。ハンドラーはDOM、Canvas、IndexedDB、クリップボード、fetchなどに完全にアクセスできます。
Related MCP server: @teatak/mcp-server-browser
認証
デフォルトでは、デーモンは起動時にランダムなトークンを生成します。取得方法は2つあります:
ターミナルモード - デーモン起動時にトークンが画面に表示されます
MCPモード - AIが組み込みの
bifrost_connection_infoツールを呼び出してトークンを取得し、アプリに貼り付けるべき内容を教えてくれます
トークンをクライアントに渡します:
const bridge = new BifrostBrowser({ port: 3099, token: "TOKEN" });ローカル開発中は --no-auth を使用して認証を完全にスキップできます。
複数のタブ
各タブは独自のツールを登録します。呼び出しは、そのツールを所有しているタブにルーティングされます。タブを切断すると、そのツールは削除されます。
オプション
--port <port> WebSocket port (default: 3099)
--timeout <secs> Tool call timeout (default: 120)
--no-auth Disable token auth (dev only)
--help, -h Show this message
--version, -v Show version開発
git clone https://github.com/Business-Maps/bifrost.git && cd bifrost
npm install
npm testライセンス
Apache 2.0
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
Live browser debugging for AI assistants — DOM, console, network via MCP.
A registry of AI agent tools — MCP servers, APIs, CLIs, SDKs — kept current by automated ingestion.
A paid remote MCP for AI agent browser DevTools MCP, built to return verdicts, receipts, usage logs,
Related MCP Servers
- AlicenseBqualityCmaintenanceAn MCP server that provides AI models with full browser automation capabilities through Chrome. It enables navigation, interaction, screenshots, and complete DevTools access by bridging AI clients with a companion Chrome extension.99163Apache 2.0
- AlicenseNot gradedqualityDmaintenanceAn MCP server that runs in the browser, letting web pages register custom tools and prompts and expose them to an MCP client over WebSocket. Enables agents to drive UI, call page-scoped APIs, and get human-in-the-loop confirmation.15MIT
- FlicenseNot gradedqualityCmaintenanceTurns your Chrome browser into an MCP server, allowing AI clients to control browser actions like clicking, typing, navigating, and data extraction through custom JavaScript tools.29-
- FlicenseNot gradedqualityDmaintenanceEnables websites to expose JavaScript functions as MCP tools, allowing AI agents to interact with the browser environment via a protocol and Chrome extension.1,094-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Business-Maps/bifrost'
If you have feedback or need assistance with the MCP directory API, please join our Discord server