Skip to content

Commit 9136396

Browse files
committed
Fixed instances of hallucinated MCP terms fixes #8
1 parent fa2008c commit 9136396

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SwiftMCP
22

3-
A Swift implementation of the MCP (Multiplexed Communication Protocol) for JSON-RPC over various transports.
3+
A Swift implementation of the MCP (Model Context Protocol) for JSON-RPC over various transports.
44

55
## Features
66

Sources/SwiftMCP/SwiftMCP.docc/Articles/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Create your first MCP server in minutes.
44

55
## Overview
66

7-
SwiftMCP makes it easy to build Model Control Protocol (MCP) servers that can interact with AI models. This guide will help you get started with the basics.
7+
SwiftMCP makes it easy to build Model Context Protocol (MCP) servers that can interact with AI models. This guide will help you get started with the basics.
88

99
## Installation
1010

Sources/SwiftMCP/SwiftMCP.docc/SwiftMCP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ``SwiftMCP``
1+
# SwiftMCP
22

3-
A framework for building AI-powered tools and plugins.
3+
SwiftMCP (Model Context Protocol) is a framework that helps you expose Swift functions as tools that can be called by AI assistants. It provides:
44

55
## Overview
66

Sources/SwiftMCP/SwiftMCP.docc/Tutorials/SwiftMCPTutorials.tutorial

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@Tutorials(name: "SwiftMCP Tutorials") {
22
@Intro(title: "Building MCP Servers") {
3-
Learn how to build powerful Model Control Protocol (MCP) servers using SwiftMCP.
3+
Learn how to build powerful Model Context Protocol (MCP) servers using SwiftMCP.
44

55
These tutorials will guide you through creating MCP servers that can interact with AI models,
66
handle errors gracefully, and perform asynchronous operations.

Sources/SwiftMCP/Transport/Transport.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22
import Logging
33

44
/**
5-
Protocol defining the common interface for MCP (Machine Control Protocol) transports.
5+
Protocol defining the common interface for MCP (Model Context Protocol) transports.
66

77
Transport implementations handle the communication layer between clients and the MCP server.
88
Each transport type provides a different way to interact with the server:

0 commit comments

Comments
 (0)