Jeremiah Lowin commited on
Commit
d28c72c
·
1 Parent(s): f80ec7c

Minor docs updates

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. docs/getting-started/welcome.mdx +2 -2
README.md CHANGED
@@ -11,7 +11,7 @@
11
 
12
  </div>
13
 
14
- [Model Context Protocol (MCP)](https://modelcontextprotocol.io) servers are a standardized way to provide context and tools to your LLMs, and FastMCP makes building *and interacting with* them simple and intuitive. Create tools, expose resources, define prompts, and connect components with clean, Pythonic code.
15
 
16
  ```python
17
  # server.py
 
11
 
12
  </div>
13
 
14
+ The [Model Context Protocol (MCP)](https://modelcontextprotocol.io) is a new, standardized way to provide context and tools to your LLMs, and FastMCP makes building MCP servers and clients simple and intuitive. Create tools, expose resources, define prompts, and connect components with clean, Pythonic code.
15
 
16
  ```python
17
  # server.py
docs/getting-started/welcome.mdx CHANGED
@@ -7,7 +7,7 @@ icon: hand-wave
7
  ---
8
 
9
 
10
- [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) servers are a new, standardized way to provide context and tools to your LLMs, and FastMCP makes building MCP servers simple and intuitive. Create tools, expose resources, define prompts, and more with clean, Pythonic code:
11
 
12
  ```python {1, 3, 5, 11}
13
  from fastmcp import FastMCP
@@ -25,7 +25,7 @@ if __name__ == "__main__":
25
 
26
 
27
  ## What is MCP?
28
- The Model Context Protocol (MCP) lets you build servers that expose data and functionality to LLM applications in a secure, standardized way. It is often described as "the USB-C port for AI", providing a uniform way to connect LLMs to resources they can use. It may be easier to think of it as an API, but specifically designed for LLM interactions. MCP servers can:
29
 
30
  - Expose data through **Resources** (think of these sort of like GET endpoints; they are used to load information into the LLM's context)
31
  - Provide functionality through **Tools** (sort of like POST endpoints; they are used to execute code or otherwise produce a side effect)
 
7
  ---
8
 
9
 
10
+ The [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) is a new, standardized way to provide context and tools to your LLMs, and FastMCP makes building MCP servers and clients simple and intuitive. Create tools, expose resources, define prompts, and more with clean, Pythonic code:
11
 
12
  ```python {1, 3, 5, 11}
13
  from fastmcp import FastMCP
 
25
 
26
 
27
  ## What is MCP?
28
+ The Model Context Protocol lets you build servers that expose data and functionality to LLM applications in a secure, standardized way. It is often described as "the USB-C port for AI", providing a uniform way to connect LLMs to resources they can use. It may be easier to think of it as an API, but specifically designed for LLM interactions. MCP servers can:
29
 
30
  - Expose data through **Resources** (think of these sort of like GET endpoints; they are used to load information into the LLM's context)
31
  - Provide functionality through **Tools** (sort of like POST endpoints; they are used to execute code or otherwise produce a side effect)