Install
AI Quick Start
These shortcuts open desktop apps. On a phone, use the copy buttons in the setup sections below and send the command to your computer.
Use the public Cloudflare MCP endpoint when you want an agent to use this knowledge base without Git credentials or a local clone.
text
https://cdp-index-mcp-beta.bakerstreet.tech/mcpThe custom domain is protected by Cloudflare Access, so use https://cdp-index-mcp-beta.bakerstreet.tech/mcp for no-creds agent setup.
Codex
Add the hosted MCP server:
bash
codex mcp add cdp-index --url https://cdp-index-mcp-beta.bakerstreet.tech/mcpRestart Codex Desktop or open a new thread, then run /mcp to confirm cdp-index is connected.
Claude Code
Add the hosted MCP server:
bash
claude mcp add --transport http cdp-index https://cdp-index-mcp-beta.bakerstreet.tech/mcpRestart Claude Code or open a new session. The tools should appear as:
text
mcp__cdp-index__search_index
mcp__cdp-index__search_index_docs
mcp__cdp-index__search_index_tools
mcp__cdp-index__describe_index_tool
mcp__cdp-index__call_index_toolMicrosoft Teams and Copilot
Use the same public MCP endpoint for Microsoft 365 Copilot and Teams agent experiments:
text
https://cdp-index-mcp-beta.bakerstreet.tech/mcpFastest Copilot Studio path:
- Open the target agent in Copilot Studio.
- Go to Tools.
- Select Add a tool > New tool > Model Context Protocol.
- Enter:
- Server name:
CDP Index - Server description:
Search CDP Index project memory, partner notes, connectors, workflows, and operating documentation. - Server URL:
https://cdp-index-mcp-beta.bakerstreet.tech/mcp - Authentication:
None
- Server name:
- Create the tool, add the MCP tools to the agent, then test with:
Search CDP Index for MCP setup.
Teams / Microsoft 365 Copilot agent path:
- Use Microsoft 365 Agents Toolkit in VS Code.
- Create a new declarative agent.
- Add an action and choose Start with an MCP server.
- Enter
https://cdp-index-mcp-beta.bakerstreet.tech/mcp. - Select the tools to expose, usually:
search_indexsearch_index_docssearch_index_toolsdescribe_index_toolcall_index_tool
- Test locally through Microsoft 365 Copilot, then package and publish the agent to Teams/Microsoft 365 through the tenant approval flow.
Do not use https://cdp-index-mcp-beta.bakerstreet.tech/mcp for Copilot or Teams unless the Microsoft connector is configured with Cloudflare Access service-token headers. Without that, Microsoft clients receive the Cloudflare Access login redirect instead of MCP JSON-RPC.
Local Repository Setup
Use these links only when you want to open the Git-backed repository in an agent and configure the local MCP server from mcp/.
- Open in Codex: uses Codex
originUrlmatching to find a local workspace with thehttps://github.com/bakerstreetco/cdp-indexremote. - Open in Claude Code: uses Claude Code
cwdmatching for this local clone. Claude Code'srepo=deeplink is GitHubowner/namebased, so usecwd=for non-GitHub repositories.
If the clone is not present locally:
bash
git clone https://github.com/bakerstreetco/cdp-index.git cdp-index && cd cdp-index && npm install && npm run mcp:generateConfigure the local stdio MCP server:
bash
claude mcp add --transport stdio cdp-index -- sh -lc 'cd cdp-index/. && npx tsx .generated/mcp/index.ts'
codex mcp add cdp-index -- sh -lc 'cd cdp-index/. && npx tsx .generated/mcp/index.ts'Sources checked: Claude Code deep links, Claude Code MCP, Codex app deep links, Codex MCP, Copilot Studio MCP onboarding, Microsoft 365 agent connectors for MCP.