Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions ts-framework/functions/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Gram Functions for TypeScript
# TypeScript MCP server Framework

This library provides a lightweight framework for building MCP compliant agentic tools in
TypeScript using Gram Functions.

Gram Functions are small pieces of code that represent LLM tools. They are
deployed to [Gram](https://getgram.ai) and are then exposed to LLMs via MCP
deployed to [Gram](https://getgram.ai) where they can be combined with other tools to create MCP
servers.

This library provides a small framework for authoring Gram Functions in
TypeScript. The "Hello, World!" example is:
"Hello, World!" example:

```typescript
import { Gram } from "@gram-ai/functions";
Expand Down
Loading