Skip to content

Commit dfdc199

Browse files
authored
Merge branch 'main' into main
2 parents b2ac007 + 538a6a3 commit dfdc199

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,15 @@ A growing set of community-developed and maintained servers demonstrates various
110110
- **[Atlassian](https://github.com/sooperset/mcp-atlassian)** - Interact with Atlassian Cloud products (Confluence and Jira) including searching/reading Confluence spaces/pages, accessing Jira issues, and project metadata.
111111
- **[Google Tasks](https://github.com/zcaceres/gtasks-mcp)** - Google Tasks API Model Context Protocol Server.
112112
- **[Fetch](https://github.com/zcaceres/fetch-mcp)** - A server that flexibly fetches HTML, JSON, Markdown, or plaintext
113-
- **[Minima]([https://github.com/zcaceres/fetch-mcp](https://github.com/dmayboroda/minima))** - MCP server for RAG on local files
113+
- **[Minima](https://github.com/dmayboroda/minima)** - MCP server for RAG on local files
114+
- **[AWS S3](https://github.com/aws-samples/sample-mcp-server-s3)** - A sample MCP server for AWS S3 that flexibly fetches objects from S3 such as PDF documents
115+
116+
## 📚 Frameworks
117+
118+
These are high-level frameworks that make it easier to build MCP servers.
119+
120+
* [FastMCP](https://github.com/punkpeye/fastmcp) (TypeScript)
121+
* [EasyMCP](https://github.com/zcaceres/easy-mcp/) (TypeScript)
114122

115123
## 📚 Resources
116124

src/everything/everything.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ export const createServer = () => {
411411
maxTokens,
412412
);
413413
return {
414-
content: [{ type: "text", text: `LLM sampling result: ${result}` }],
414+
content: [{ type: "text", text: `LLM sampling result: ${result.content.text}` }],
415415
};
416416
}
417417

0 commit comments

Comments
 (0)