Skip to content

Commit 142a69d

Browse files
committed
docs: OpenEdx -> Open edX
1 parent fd7dba3 commit 142a69d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/how-tos/mcp_example_server.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Create a file named ``run_server.py``:
131131
Step 3: Expose the Server with ngrok
132132
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
133133

134-
Since MCP clients (including OpenEdx AI Extensions) need to access the server via a public URL, you must expose your local server using ngrok:
134+
Since MCP clients (including Open edX AI Extensions) need to access the server via a public URL, you must expose your local server using ngrok:
135135

136136
.. code-block:: bash
137137
@@ -157,7 +157,7 @@ Create a file named ``client_example.py`` to test your server:
157157
Example MCP client using LiteLLM
158158
159159
This demonstrates how to connect to an MCP server and use its tools
160-
from a language model. This is similar to how OpenEdx AI Extensions
160+
from a language model. This is similar to how Open edX AI Extensions
161161
will interact with your MCP servers.
162162
"""
163163
import asyncio
@@ -224,10 +224,10 @@ Follow these steps to test the complete MCP workflow:
224224
225225
python client_example.py
226226
227-
Testing with OpenEdx AI Extensions
228-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
227+
Testing with Open edX AI Extensions
228+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
229229

230-
To integrate this example server with OpenEdx AI Extensions:
230+
To integrate this example server with Open edX AI Extensions:
231231

232232
1. **Configure the MCP server** in your Django settings:
233233

@@ -317,7 +317,7 @@ Remember:
317317
Further Reading
318318
---------------
319319

320-
- :doc:`mcp_integration` - Main MCP integration guide for OpenEdx AI Extensions
320+
- :doc:`mcp_integration` - Main MCP integration guide for Open edX AI Extensions
321321
- `FastMCP Documentation <https://github.com/jlowin/fastmcp>`_ - Complete FastMCP framework documentation
322322
- `MCP Specification <https://modelcontextprotocol.io/>`_ - Official Model Context Protocol specification
323323

docs/how-tos/mcp_integration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Model Context Protocol (MCP) Integration
22
=========================================
33

44
.. warning::
5-
**Important: OpenEdx AI Extensions acts as an MCP CLIENT only**
5+
**Important: Open edX AI Extensions acts as an MCP CLIENT only**
66

77
This application **does not run or host MCP servers**. It only connects to external MCP servers as a client.
88

@@ -13,13 +13,13 @@ Model Context Protocol (MCP) Integration
1313
Overview
1414
--------
1515

16-
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely interact with external tools and data sources. OpenEdx AI Extensions integrates with MCP by acting as a **client** that can connect to external MCP servers, allowing your AI workflows to leverage custom tools and capabilities.
16+
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely interact with external tools and data sources. Open edX AI Extensions integrates with MCP by acting as a **client** that can connect to external MCP servers, allowing your AI workflows to leverage custom tools and capabilities.
1717

1818
Key Concepts
1919
~~~~~~~~~~~~
2020

2121
- **MCP Server**: An external service that exposes tools and resources via the MCP protocol. You must deploy and manage these servers independently.
22-
- **MCP Client**: OpenEdx AI Extensions acts as a client, connecting to your MCP servers and making their tools available to AI workflows.
22+
- **MCP Client**: Open edX AI Extensions acts as a client, connecting to your MCP servers and making their tools available to AI workflows.
2323
- **MCP Tools**: Functions exposed by MCP servers that the AI model can call to perform specific operations (e.g., data retrieval, computations, integrations).
2424

2525
Architecture
@@ -28,7 +28,7 @@ Architecture
2828
.. code-block:: text
2929
3030
┌────────────────────────────────────────────┐
31-
OpenEdX AI Extensions
31+
Open edX AI Extensions │
3232
│ (MCP Client / Orchestrator) │
3333
│ │
3434
│ ┌──────────────────────┐ │

0 commit comments

Comments
 (0)