- Home
- MCP servers
- Run TypeScript Skills
Run TypeScript Skills
- typescript
1
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"zgagnon-run-typescript-skills-mcp": {
"command": "bun",
"args": [
"/absolute/path/to/run-typescript-skills-mcp/src/mcp-bun.ts"
]
}
}
}You enable an MCP server that lets an AI agent execute TypeScript code against your own APIs located under ~/.claude/skills, enabling fast, in-process interactions with structured results.
How to use
You enable a local MCP server that provides a single tool: run-skill-code. When your agent has this server configured, it can run TypeScript code that imports and calls functions from your TypeScript skill APIs.”},{
How to install
Prerequisites: Bun v1.0.0 or later.
Setup steps you should perform in sequence:
git clone <repository-url>
cd run-typescript-skills-mcp
bun install
bun run build
Configuration and usage details
Configuration is provided for your MCP client to connect to the server locally via a standard in-process runtime. Use the following MCP client configuration to point your editor or desktop client at the local server.
{
"mcpServers": {
"ts_skills_mcp": {
"command": "bun",
"args": ["/absolute/path/to/run-typescript-skills-mcp/src/mcp-bun.ts"]
}
}
}
Security and maintenance notes
No sandboxing is applied. Code runs with the same permissions as the MCP server and can access the file system. Trust and caution are essential when enabling this in your environment.
Example: what your agent can do
Your agent can import from ~/.claude/skills and execute TypeScript code to perform tasks, such as creating structured data through APIs you expose in your skills folder.
Available tools
run-skill-code
Executes TypeScript code that imports and calls functions from your TypeScript skill APIs located in ~/.claude/skills, returning structured results.