Skip to content

Commit 15c0075

Browse files
committed
README: Adding Postman/Newman to community mcp servers for Readme
1 parent d326679 commit 15c0075

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

README.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Model Context Protocol servers
22

3-
This repository is a collection of *reference implementations* for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP), as well as references
3+
This repository is a collection of _reference implementations_ for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP), as well as references
44
to community built servers and additional resources.
55

66
The servers in this repository showcase the versatility and extensibility of MCP, demonstrating how it can be used to give Large Language Models (LLMs) secure, controlled access to tools and data sources.
@@ -113,6 +113,7 @@ A growing set of community-developed and maintained servers demonstrates various
113113
- **[Pandoc](https://github.com/vivekVells/mcp-pandoc)** - MCP server for seamless document format conversion using Pandoc, supporting Markdown, HTML, and plain text, with other formats like PDF, csv and docx in development.
114114
- **[Pinecone](https://github.com/sirmews/mcp-pinecone)** - MCP server for searching and uploading records to Pinecone. Allows for simple RAG features, leveraging Pinecone's Inference API.
115115
- **[Playwright](https://github.com/executeautomation/mcp-playwright)** - This MCP Server will help you run browser automation and webscraping using Playwright
116+
**[Postman](https://github.com/shannonlal/mcp-postman)** - MCP server for running Postman Collections locally via Newman. Allows for simple execution of Postman Server and returns the results of whether the collection passed all the tests.
116117
- **[RAG Web Browser](https://github.com/apify/mcp-server-rag-web-browser)** An MCP server for Apify's RAG Web Browser Actor to perform web searches, scrape URLs, and return content in Markdown.
117118
- **[Rememberizer AI](https://github.com/skydeckai/mcp-server-rememberizer)** - An MCP server designed for interacting with the Rememberizer data source, facilitating enhanced knowledge retrieval.
118119
- **[Salesforce MCP](https://github.com/smn2gnt/MCP-Salesforce)** - Interact with Salesforce Data and Metadata
@@ -132,8 +133,8 @@ A growing set of community-developed and maintained servers demonstrates various
132133

133134
These are high-level frameworks that make it easier to build MCP servers.
134135

135-
* [EasyMCP](https://github.com/zcaceres/easy-mcp/) (TypeScript)
136-
* [FastMCP](https://github.com/punkpeye/fastmcp) (TypeScript)
136+
- [EasyMCP](https://github.com/zcaceres/easy-mcp/) (TypeScript)
137+
- [FastMCP](https://github.com/punkpeye/fastmcp) (TypeScript)
137138

138139
## 📚 Resources
139140

@@ -159,16 +160,19 @@ Additional resources on MCP.
159160
## 🚀 Getting Started
160161

161162
### Using MCP Servers in this Repository
163+
162164
Typescript-based servers in this repository can be used directly with `npx`.
163165

164166
For example, this will start the [Memory](src/memory) server:
167+
165168
```sh
166169
npx -y @modelcontextprotocol/server-memory
167170
```
168171

169172
Python-based servers in this repository can be used directly with [`uvx`](https://docs.astral.sh/uv/concepts/tools/) or [`pip`](https://pypi.org/project/pip/). `uvx` is recommended for ease of use and setup.
170173

171174
For example, this will start the [Git](src/git) server:
175+
172176
```sh
173177
# With uvx
174178
uvx mcp-server-git
@@ -181,6 +185,7 @@ python -m mcp_server_git
181185
Follow [these](https://docs.astral.sh/uv/getting-started/installation/) instructions to install `uv` / `uvx` and [these](https://pip.pypa.io/en/stable/installation/) to install `pip`.
182186

183187
### Using an MCP Client
188+
184189
However, running a server on its own isn't very useful, and should instead be configured into an MCP client. For example, here's the Claude Desktop configuration to use the above server:
185190

186191
```json
@@ -201,7 +206,11 @@ Additional examples of using the Claude Desktop as an MCP client might look like
201206
"mcpServers": {
202207
"filesystem": {
203208
"command": "npx",
204-
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/files"]
209+
"args": [
210+
"-y",
211+
"@modelcontextprotocol/server-filesystem",
212+
"/path/to/allowed/files"
213+
]
205214
},
206215
"git": {
207216
"command": "uvx",
@@ -216,7 +225,11 @@ Additional examples of using the Claude Desktop as an MCP client might look like
216225
},
217226
"postgres": {
218227
"command": "npx",
219-
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
228+
"args": [
229+
"-y",
230+
"@modelcontextprotocol/server-postgres",
231+
"postgresql://localhost/mydb"
232+
]
220233
}
221234
}
222235
}

0 commit comments

Comments
 (0)