My Tools MCP Server
Description
# My Tools MCP Server このプロジェクトは、個人の自動化ツールをAIエージェントでも利用できるようにするためのMCPサーバーです。 ## プロジェクト概要 - プライベートリポジトリ: [my-tools](https://github.com/nishio/my-tools) - パブリックリポジトリ: [my-tools-mcp-server-public-preview](https://github.com/nishio/my-tools-mcp-server-public-preview) ##…
About
# My Tools MCP Server このプロジェクトは、個人の自動化ツールをAIエージェントでも利用できるようにするためのMCPサーバーです。 ## プロジェクト概要 - プライベートリポジトリ: [my-tools](https://github.com/nishio/my-tools) - パブリックリポジトリ: [my-tools-mcp-server-public-preview](https://github.com/nishio/my-tools-mcp-server-public-preview) ## 公開とプライベートリポジトリの使い分け…
Details
- Author
- nishio
- Downloads
- 193
- Categories
- Other, Automation
Jump to
- Provides personal automation tools to AI agents via MCP
- Uses TypeScript and Python for tool implementation
- Includes a "get_current_time" tool as an example
- Supports extensibility by adding new tools in a single server
- Aggregates various personal scripts in one repository
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
My Tools MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
To use, create a project directory, then run npx @modelcontextprotocol/create-server time-server. Edit index.ts to add tools like get_current_time and use execSync to call Python scripts.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"my tools mcp server": {
"my-tools-mcp-server-public-preview": {
"command": "npx",
"args": [
"@modelcontextprotocol/create-server",
"time-server"
]
}
}
}
}
McpServers
{
"my-tools-mcp-server-public-preview": {
"command": "npx",
"args": [
"@modelcontextprotocol/create-server",
"time-server"
]
}
}
My Tools MCP Server
このプロジェクトは、個人の自動化ツールをAIエージェントでも利用できるようにするためのMCPサーバーです。
プロジェクト概要
- プライベートリポジトリ: my-tools
- パブリックリポジトリ: my-tools-mcp-server-public-preview
公開とプライベートリポジトリの使い分け
このMCPサーバーは、個人専用のツールとして設計されています。プライベートリポジトリには個人の設定やスクリプトが含まれていますが、現時点で秘密情報は含まれていないため、パブリックリポジトリにも一部の情報を公開しています。
今後の展望
今後は、細々としたツールを作るたびに新しいサーバーを作成するのではなく、my-toolsサーバーに様々なツールを集約し、効率的に管理していく予定です。
作業メモ
1. プロジェクトディレクトリを作成します。
$ mkdir my-tools
$ code my-tools
2. MCPサーバーを作成します。
$ npx @modelcontextprotocol/create-server time-server
3. サーバーにPythonスクリプトを呼び出すツールを追加します。index.tsファイルを編集し、以下のコードを追加します。
{
name: "get_current_time",
description: "Get the current time",
inputSchema: {
type: "object",
properties: {},
required: []
}
}
4. execSyncを使用してPythonスクリプトを呼び出します。
server.setRequestHandler(CallToolRequestSchema, async (request) => {
switch (request.params.name) {
case "get_current_time": {
const output = execSync('python3 current_time.py').toString().trim();
return {
content: [{
type: "text",
text: Current time is: ${output}
}]
};
}
default:
throw new Error("Unknown tool");
}
});
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.


