Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dmayboroda authored Jan 10, 2025
2 parents b2ac007 + 538a6a3 commit dfdc199
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,15 @@ A growing set of community-developed and maintained servers demonstrates various
- **[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.
- **[Google Tasks](https://github.com/zcaceres/gtasks-mcp)** - Google Tasks API Model Context Protocol Server.
- **[Fetch](https://github.com/zcaceres/fetch-mcp)** - A server that flexibly fetches HTML, JSON, Markdown, or plaintext
- **[Minima]([https://github.com/zcaceres/fetch-mcp](https://github.com/dmayboroda/minima))** - MCP server for RAG on local files
- **[Minima](https://github.com/dmayboroda/minima)** - MCP server for RAG on local files
- **[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

## 📚 Frameworks

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

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

## 📚 Resources

Expand Down
2 changes: 1 addition & 1 deletion src/everything/everything.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export const createServer = () => {
maxTokens,
);
return {
content: [{ type: "text", text: `LLM sampling result: ${result}` }],
content: [{ type: "text", text: `LLM sampling result: ${result.content.text}` }],
};
}

Expand Down

0 comments on commit dfdc199

Please sign in to comment.